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;
}
Aggregations