我在为 C# 设置 ANTLR v4 时遇到问题,有人愿意帮助我吗?我正在使用此处从官方站点https://github.com/sharwell/antlr4cs引用的构建目标
我添加了一个简单的语法Foo.g
grammar Foo;
r : 'hello' ID ; // match keyword hello followed by an identifier
ID : [a-z]+ ; // match lower-case identifiers
WS : [ \t\r\n]+ -> skip ; // skip spaces, tabs, newlines
...并将其构建操作设置为Antlr4
现在我遇到了以下错误。
'´' came as a complete surprise to me
mismatched input 'grammar' expecting SEMI