@@ -33,7 +33,10 @@ public class CommonFunctionValue extends AbstractValue{
@Override
public String getId() {
if(id==null){
- id= "[函数]"+label+"("+parameter.getId()+")";
+ id= "[函数]"+label+"("+parameter.getId()+")";
+ if(arithmetic!=null){
+ id=id+arithmetic.getId();
+ }
}
return id;
@@ -27,6 +27,9 @@ public class ParenValue extends AbstractValue {
id+=value.getId();
id+=")";