use of suite.jdk.gen.FunExprM.LocalFunExpr in project suite by stupidsing.
the class FunFactory method local.
public FunExpr local(int number) {
// 0 means this
LocalFunExpr expr = new LocalFunExpr();
expr.index = number;
return expr;
}
Aggregations