use of soot.jimple.BinopExpr in project soot by Sable.
the class Walker method outABinopExpr.
/*
* binop_expr = [left]:immediate binop [right]:immediate;
*/
public void outABinopExpr(ABinopExpr node) {
Value right = (Value) mProductions.removeLast();
BinopExpr expr = (BinopExpr) mProductions.removeLast();
Value left = (Value) mProductions.removeLast();
expr.setOp1(left);
expr.setOp2(right);
mProductions.addLast(expr);
}
Aggregations