我已经下载了 ANTLRWorks 2,使用 File->New 创建了新文件并将 Hello 示例粘贴到其中
grammar Hello;
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
之后我可以看到语法图,但不能做任何其他事情。例如,Run
有 3 个项目的菜单完全变暗,并且不知道如何取消它们。