Search in sources :

Example 1 with If1FunExpr

use of suite.jdk.gen.FunExprM.If1FunExpr in project suite by stupidsing.

the class FunFactory method if_.

public FunExpr if_(FunExpr if_, FunExpr then_, FunExpr else_) {
    If1FunExpr expr = new If1FunExpr();
    expr.if_ = if_;
    expr.then = then_;
    expr.else_ = else_;
    return expr;
}
Also used : If1FunExpr(suite.jdk.gen.FunExprM.If1FunExpr)

Aggregations

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