通过 ANTLR 和 DLR 扩展 C#

发布于 2024-12-11 07:20:41 字数 235 浏览 0 评论 0原文

我目前正在编写一种编程语言,主要通过添加自定义运算符和关键字来扩展 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 技术交流群。

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

发布评论

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

评论(2

满地尘埃落定 2024-12-18 07:20:41

如果你想扩展 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

肤浅与狂妄 2024-12-18 07:20:41

从 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.

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