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