单引号兼作运算符的 Antlr 语法

发布于 2024-09-11 01:14:05 字数 384 浏览 2 评论 0原文

我正在研究 Antlr 语法,其中单引号既用作运算符又在字符串文字中使用,例如:

operand:     DIGIT | STRINGLIT | reference;
expression:  operand SQUOTE;
STRINGLIT:   '\''  ~('\\'|'\'')* '\'';

1' 这样的表达式可以正确解析,但是当存在与 ~( 匹配的输入时'\\'|'\'')* 在引号后,例如 1'+2,词法分析器尝试匹配 STRINGLIT 并失败。我希望能够恢复并发出 SQUOTE。有什么想法如何实现它吗?

谢谢。

I am working on an Antlr grammar in which single quotes are used both as operators and in string literals, something like:

operand:     DIGIT | STRINGLIT | reference;
expression:  operand SQUOTE;
STRINGLIT:   '\''  ~('\\'|'\'')* '\'';

Expressions like 1' parse correctly, but when there is input that matches ~('\\'|'\'')* after the quote, such as 1'+2, the lexer attempts to match STRINGLIT and fails. I'd like to be able to recover and emit SQUOTE. Any ideas how to accomplish it?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巴黎夜雨 2024-09-18 01:14:05

在 Antlrworks 中测试了这个语法之后,我认为你的问题是你在这里限制太多了。如果您有一个规则在看到操作数 SQUOTE 后接受某些内容,Antlr 将能够解析 1'+2。由于 ANTLR 不知道如何处理 +2,因此它会抛出异常。

After testing this grammar a bit in Antlrworks, I think that your problem is that you are being too restrictive here. Antlr would be able to parse 1'+2 if you had a rule that accepted something after it has seen operand SQUOTE. Since ANTLR doesn't know what to do with the +2, it throws an exception.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文