D 中的 gppg/gplex 等效吗?

发布于 2024-11-18 18:10:25 字数 366 浏览 3 评论 0原文

当我在 C# 中工作时,我发现了 gppggplex 解析器/词法分析器生成器非常适合我的需求。我想知道 D 编程语言是否有类似的东西(即,给定 BNF 或 EBNF 语法的实用程序,输出将该语言词法/解析为抽象语法树的 D 代码)。

我发现的最接近的是 Goldie,但我很难理解它,所以我'我无法启动并运行任何东西。

When I was working in C#, I found the gppg and gplex parser/lexer generators to be perfect for my needs. I'm wondering if there's something similar for the D programming language (i.e. a utility that, given a grammar in BNF or EBNF, outputs D code that lexes/parses that language into a abstract syntax tree).

The closest I've found is Goldie, but I'm having so much trouble understanding it that I'm not able to get anything up and running.

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

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

发布评论

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

评论(2

仅冇旳回忆 2024-11-25 18:10:25

I have found Goldie pretty awesome for context-insensitive grammars, are you sure about it? Also, http://www.wikiservice.at/d/wiki.cgi?GrammarParsers lists some, no idea which are still developed. If ANTLR-D still works, it is probably on of the best choices.

一抹苦笑 2024-11-25 18:10:25

Goldie 可能是您最好的选择,但还有可以发出 D 的 ragel。这并不完全是您所要求的(可组合状态机),尽管它可能足以满足许多情况并且非常好。

Trunk 版本可以使用未记录的 -E 开关编译为 D2 代码,我还不确定它有多成熟。

http://www.complang.org/ragel/

Goldie is probably your best bet, but there's also ragel which can emit D. It's not exactly what you asked for (composable state machines) though it might suffice for many cases and it's really nice.

Trunk version can compile to D2 code with the undocumented -E switch, I'm not sure yet how mature that is.

http://www.complang.org/ragel/

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