JavaCC 中的 NULL 标记
我的令牌有奇怪的问题 < NULL:“空”> 在我的 JavaCC 解析器中。 在像解析器这样的表达式中,
String IsNullClause():
{
String res = "";
}
{
<IS> {res += " IS ";}
[<NOT> {res += " NOT ";} ]
<NULL> {res += " NULL ";}
{
return res;
}
}
看不到 NULL 标记并抛出“null”预期的异常。 如果我将标记定义更改为 < NULL:“null_val”> 或者其他东西它工作正常。 这是我的错误还是 JavaCC 不接受“null”作为标记值?
I have strange problem with token
< NULL: "null" >
in my JavaCC parser.
In expression like
String IsNullClause():
{
String res = "";
}
{
<IS> {res += " IS ";}
[<NOT> {res += " NOT ";} ]
<NULL> {res += " NULL ";}
{
return res;
}
}
parser doesn't see NULL token and throws exception that "null" expected. If I change token definition to < NULL: "null_val" > or something else it works fine.
Is this my mistake or JavaCC doesn't accept 'null' as a token value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaCC 包中有示例 Java 语言语法,其标记定义如下:
<; NULL: "null" >
所以我很确定 JavaCC 可以处理 null 标记。
您确定 NULL 之前声明的任何标记都不会匹配“null”吗? 令牌按照声明的顺序进行匹配。 您可以尝试在一开始就声明 NULL。
There are sample Java language grammars in JavaCC package, with the following token difinition:
< NULL: "null" >
so I'm pretty sure JavaCC can handle null token.
Are you sure no token declared before NULL matches "null"? Tokens are matched in the order of declaration. You may try to declare NULL at the very beginning.