通过 ANTLR 和 DLR 扩展 C#
我目前正在编写一种编程语言,主要通过添加自定义运算符和关键字来扩展 C#。
我在 http://antlrcsharp.codeplex.com/ 中找到了 c# 4 的语法文件,但找不到任何有关如何将此文件导入我自己的语法文件中的示例。
任何人都可以提供一些例子或向我指出存档相同内容的其他项目吗?
I'm currently in the process of writing a programming language which extends C# mainly by adding custom operators and keywords.
I have found the grammar file for c# 4 in http://antlrcsharp.codeplex.com/ but cannot find any examples on how to import this file in my own grammar file.
Can anyone provide some examples or point me to other projects which archive the same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你想扩展 c# 这意味着你正在做 DSL?
查看来自 codeplex 的讽刺,Hanselman 解释得更好
If you want to extend c# that means you're doing a DSL?
Check this one out Irony from codeplex, Hanselman explains it better
从 ANTLR 3.1 开始,有一个语法组合功能。
您可以将其他语法导入到您的语法中,然后使用和/或覆盖导入语法中的规则。
另一种方法是根据您的需要修改现有的 C# 语法。
Starting with ANTLR 3.1 there is a grammar composition feature.
You can import other grammars to yours and then use and/or override rules from the imported ones.
Another approach would be to modify the existing C# grammar to your needs.