use of suite.jdk.gen.FunExprM.BinaryFunExpr in project suite by stupidsing.
the class FunFactory method bi.
public FunExpr bi(String op, FunExpr e0, FunExpr e1) {
BinaryFunExpr expr = new BinaryFunExpr();
expr.op = op;
expr.left = e0;
expr.right = e1;
return expr;
}
Aggregations