363364365366367368369370371372373
// }else{ // lambda.getSpecialsBefore().add("lambda "); // } return lambda; case JJTELLIPSIS: return new Ellipsis(); case JJTSLICE: SimpleNode[] arr = new SimpleNode[arity]; for (int i = arity - 1; i >= 0; i--) { arr[i] = stack.popNode(); }
452453454455456457458459460461462
// }else{ // lambda.getSpecialsBefore().add("lambda "); // } return lambda; case JJTELLIPSIS: return new Ellipsis(); case JJTELLIPSIS_AS_NAME: return new Name("...", Name.Load, true); case JJTSLICE:
387388389390391392393394395396397
389390391392393394395396397398399
339340341342343344345346347348349