Antlr,从令牌中获取最后一行

发布于 2024-12-11 18:00:10 字数 106 浏览 0 评论 0原文

我有一个可以包含多行的标记定义(类似于多行注释)。

我可以使用 .line 属性来获取令牌开始的行,但我需要 知道令牌在哪里结束。

是否可以获取token的最后一行?

I have a token definition that can contain multiple lines (something like multi line comments).

I can use the .line attribute to get the line where the token starts, but I need to
know where the token end.

Is it possible to get the last line of the token?

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

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

发布评论

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

评论(1

悲欢浪云 2024-12-18 18:00:10

您可以通过将 (Java) 代码块 {$line=getLine();} 放置在规则的末尾来更改标记的行号。

因此,对于多行注释,看起来像这样:

COMMENT
  :  '/*' .* '*/' {$line=getLine();}
  ;

导致标记 COMMENT 的方法 getLine() 返回子字符串 的行号“*/” 发生于。

You can change the line number of a token by placing the (Java) code-block {$line=getLine();} at the end of the rule.

So, for multi-line comments, that would look like this:

COMMENT
  :  '/*' .* '*/' {$line=getLine();}
  ;

causing the method getLine() of the token COMMENT to return the line number the sub-string "*/" occurred on.

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