public static LinkedListTree parseQualifiedIdent(String value) {
AS3Parser parser = ASTUtils.parse(value);
try {
LinkedListTree result = tree(parser.qualifiedIdent());
parser.endOfFile();
return result;
} catch (RecognitionException e) {
throw new SyntaxException("invalid identifier "+ActionScriptFactory.str(value), e);
}