}
return new List(makeExprs(), List.Load);
case JJTDICTIONARY:
return defaultCreateDictionary(arity);
case JJTSTR_1OP:
return new Repr(((exprType) stack.popNode()));
case JJTLAMBDEF:
test = (exprType) stack.popNode();
arguments = makeArguments(arity - 1);
Lambda lambda = new Lambda(arguments, test);
// if(arguments == null || arguments.args == null || arguments.args.length == 0){