use of suite.jdk.gen.FunExprM.ArrayFunExpr in project suite by stupidsing.
the class FunFactory method array.
public FunExpr array(Class<?> clazz, FunExpr... elements) {
ArrayFunExpr expr = new ArrayFunExpr();
expr.clazz = clazz;
expr.elements = elements;
return expr;
}
Aggregations