Mirror of the JODE repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jode/jode/jode/expr/PostFixOperator.java

45 lines
1.0 KiB

package jode;
import sun.tools.java.Type;
public class PostFixOperator extends Operator {
StoreInstruction store;
public PostFixOperator(Type type, int op, StoreInstruction store) {
super(type, op);
this.store = store;
}
public int getPriority() {
return 800;
}
public int getOperandPriority(int i) {
return getPriority();
}
public Type getOperandType(int i) {
return store.getLValueOperandType(i);
}
public int getOperandCount() {
return store.getLValueOperandCount();
}
/**
* Sets the return type of this operator.
* @return true if the operand types changed
*/
public boolean setType(Type type) {
boolean result = store.setLValueType(type);
super.setType(store.getLValueType());
return result;
}
public void setOperandType(Type[] inputTypes) {
store.setLValueOperandType(inputTypes);
}
public String toString(String[] operands) {
return store.getLValueString(operands) + getOperatorString();
}
}