Erlang 语法 - 为 Erlang 构建 Intellij IDEA 语言支持插件
我正在寻找为 Erlang 创建一个 Intellij IDEA 语言支持插件。
我遇到的第一个也是最大的问题是制定 JFlex Erlang 语法定义。
有谁知道我在哪里可以获得 Erlang 的 EBNF 或 BNF?
I'm looking to create an Intellij IDEA language support plugin for Erlang.
The first and biggest problem I've had is in making the JFlex Erlang syntax definition.
Does anyone know where can I get the EBNF or BNF for Erlang?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不直接访问源代码? Erlang 4.7 规范列出了语法中的产生式。
Why not go straight to the source? The Erlang 4.7 specification lists productions in a grammar.
查看 otp 源代码发行版中的
lib/compiler/src/core_parse.yrl
。Have a look at
lib/compiler/src/core_parse.yrl
in the otp source distribution.