我有一个用antlr2语法编写的语法文件,需要帮助理解如何在antlr4语法中重写一些解析器规则。我知道antlr4消除了构建AST的需要,因此我不确定如何处理 AST动作翻译的规则。 ANTLR Tree Construction解释了一些语法以及如何使用#construct,但我仍然不确定如何阅读这些规则并重新编写它们。
temp_root :
temp { #temp_root = #([ROOT, "root"], #temp_root); } EOF;
temp :
c:temp_content
{ #temp = #(#([FUNCTION_CALL, "template"], #template), c);
reparent((MyAST)#temp, MyAST)#c); };
temp_content :
(foo | bar);
foo :
{
StringBuilder result = new StringBuilder("");
}
: (c:FOO! { result.append(c.getText()); } )+
{ #foo = #([TEMPLATE_STRING_LITERAL, result.toString()], #foo); };
bar :
BEGIN_BAR! expr END_BAR!
exception
catch [Exception x] {
bar_AST = handleException(x);
};
答案 0 :(得分:0)
您无法操纵生成的解析树(至少不能使用语法代码),因此只需删除所有树重写内容(如果依赖于特定的树结构,您可能需要调整使用者代码)。同时删除感叹号(表示不应出现在AST中的标记)。令人惊讶的是c:FOO
部分。不记得曾见过这个。但从下面的动作代码判断,我猜这是一个var赋值,应该重写为c = FOO
。