ANTLR 词法分析器不匹配标记
我有一个简单的 ANTLR 语法,我已将其精简为最基本的内容来演示我遇到的这个问题。我正在使用 ANTLRworks 1.3.1。
grammar sample;
assignment : IDENT ':=' NUM ';' ;
IDENT : ('a'..'z')+ ;
NUM : ('0'..'9')+ ;
WS : (' '|'\n'|'\t'|'\r')+ {$channel=HIDDEN;} ;
显然,这个语句被语法接受:
x := 99;
但这也是:
x := @!$()()%99***;
ANTLRworks 解释器的输出:
(来源:巴里在cs.sierracollege.edu)< /sub>
我做错了什么?甚至 ANTLR 附带的其他示例语法(例如 CMinus 语法)也表现出这种行为。
I have a simple ANTLR grammar, which I have stripped down to its bare essentials to demonstrate this problem I'm having. I am using ANTLRworks 1.3.1.
grammar sample;
assignment : IDENT ':=' NUM ';' ;
IDENT : ('a'..'z')+ ;
NUM : ('0'..'9')+ ;
WS : (' '|'\n'|'\t'|'\r')+ {$channel=HIDDEN;} ;
Obviously, this statement is accepted by the grammar:
x := 99;
But this one also is:
x := @!$()()%99***;
Output from the ANTLRworks Interpreter:
(source: barry at cs.sierracollege.edu)
What am I doing wrong? Even other sample grammars that come with ANTLR (such as the CMinus grammar) exhibit this behavior.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 ANTLRWorks IDE 的控制台,您会看到很多词法分析器错误。
在命令行上尝试:
然后:
将产生:
If you look at the console of your ANTLRWorks IDE, you'll see a lot of lexer errors.
Try it on the command line:
and then:
will produce: