解析器可以告诉词法分析器忽略换行符吗?

发布于 2024-09-06 02:05:42 字数 210 浏览 3 评论 0原文

我正在为我的语言编写一个预处理器。在预处理器中,我输出了源文件中没有的一行。这会导致 Anltr 创建的任何错误消息增加一行。

词法分析器处理行计数,所以我想知道解析器是否有办法告诉词法分析器减少行计数,或忽略特定的换行符。

我也愿意接受有关如何解决此问题的其他建议。

我唯一的限制是将额外的行与现有代码内联。我宁愿将其保留在自己的行上,以保持我的解析理智。

I'm writing a preprocessor for my language. In the preprocessor I've output a line that wasn't in the source file. This causes any error messages that Anltr creates to be incremented by one line.

The Lexer handles the line count so I'm wondering if there is a way for the parser to tell the lexer to decrement the line count, or to ignore a specific newline.

I'm also open to other suggestions on how to work around this.

The only constraint I have is putting the extra line inline with the existing code. I'd prefer to keep it on it's own line to keep my parsing sane.

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

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

发布评论

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

评论(1

相守太难 2024-09-13 02:05:42

如果您删除预处理器行并用新行替换它而不是添加新行,会怎么样?然后解析预处理器的输出。

What if you remove the pre-processor line and replace it with the new line instead of adding a new one? Then parse the output of the pre-processor.

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