Search in sources :

Example 1 with BinaryFunExpr

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;
}
Also used : BinaryFunExpr(suite.jdk.gen.FunExprM.BinaryFunExpr)

Aggregations

BinaryFunExpr (suite.jdk.gen.FunExprM.BinaryFunExpr)1