helper method for string += operation

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@200 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 9edd43b624
commit 6c046404d6
  1. 4
      jode/jode/expr/StringAddOperator.java

@ -27,6 +27,10 @@ public class StringAddOperator extends SimpleOperator {
super(Type.tString, ADD_OP, 2);
operandTypes[1] = Type.tUnknown;
}
public void clearFirstType() {
operandTypes[0] = Type.tUnknown;
}
public int getPriority() {
return 610;

Loading…
Cancel
Save