220221222223224225226227228229230
} public static LinkedListTree parseForInVar(String expr) { AS3Parser parser = ASTUtils.parse(expr + " in"); try { return tree(parser.forInClauseDecl()); } catch (RecognitionException e) { throw new SyntaxException(e); } }