}
public static LinkedListTree parseXMLLiteral(String value) {
AS3Parser parser = ASTUtils.parse(value+" ");
try {
LinkedListTree result = tree(parser.xmlLiteral());
parser.endOfFile();
return result;
} catch (RecognitionException e) {
throw ASTUtils.buildSyntaxException(value, parser, e);
}