1 19 20 25 26 27 28 29 30 31 package soot.jimple.internal; 32 33 import soot.*; 34 import soot.jimple.*; 35 import soot.baf.*; 36 import soot.jimple.*; 37 import soot.util.*; 38 import java.util.*; 39 40 public class JLeExpr extends AbstractJimpleIntBinopExpr implements LeExpr 41 { 42 public JLeExpr(Value op1, Value op2) { super(op1, op2); } 43 public final String getSymbol() { return " <= "; } 44 public void apply(Switch sw) { ((ExprSwitch) sw).caseLeExpr(this); } 45 Object makeBafInst(Type opType) { throw new RuntimeException ("unsupported conversion: "+this); } 46 48 public Object clone() 49 { 50 return new JLeExpr(Jimple.cloneIfNecessary(getOp1()), Jimple.cloneIfNecessary(getOp2())); 51 } 52 53 } 54 55 56 | Popular Tags |