use of suite.jdk.gen.FunExprL.ObjectFunExpr in project suite by stupidsing.
the class FunFactory method object.
public FunExpr object(Object object, Type type) {
ObjectFunExpr expr = new ObjectFunExpr();
expr.type = type;
expr.object = object;
return expr;
}
Aggregations