229230231232233234235236237238239
} public static LinkedListTree parseForInIterated(String expr) { AS3Parser parser = ASTUtils.parse(expr + ")"); try { return tree(parser.forInClauseTail()); } catch (RecognitionException e) { throw new SyntaxException(e); } }