*/
public static LinkedListTree parseImport(String name) {
AS3Parser parser = ASTUtils.parse("import "+name+";");
try {
LinkedListTree result = tree(parser.importDefinition());
parser.endOfFile(); // assert no trailing data
return result;
} catch (RecognitionException e) {
throw new SyntaxException(e);
}
}