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/MonitorExitOperator.java

25 lines
555 B

package jode;
import sun.tools.java.Type;
public class MonitorExitOperator extends SimpleOperator {
public MonitorExitOperator(int a, int l) {
super(a,l,Type.tVoid, 0, 1);
operandTypes[0] = Type.tObject;
}
public int getPriority() {
return 0;
}
public int getOperandPriority(int i) {
return 0;
}
public Type getOperandType(int i) {
return UnknownType.tObject;
}
public String toString(CodeAnalyzer ca, String[] operands) {
return "monitorexit "+operands[0];
}
}