我已下载ANTLRWorks 2,使用File->新建并粘贴的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个项目完全变暗,没有线索如何解开它们。