setType of operand, when replacing with operand


git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@427 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 15bfb89b59
commit d485db68bb
  1. 3
      jode/jode/expr/NopOperator.java

@ -38,10 +38,11 @@ public class NopOperator extends SimpleOperator {
}
public int getPriority() {
return 0;
return 1000;
}
public Expression addOperand(Expression op) {
op.setType(type.getSubType());
return op;
}

Loading…
Cancel
Save