vote up 6 vote down star
3

I'm planning to write a C# 3.0 compiler in C#. Where can I get the grammar for parser generation?

Preferably one that works with ANTLR v3 without modification.

flag

75% accept rate
2  
You are aware that we already ship for free a compiler that compiles C# 3, right? :-) But seriously, why are you building your own? Just for fun, or is there some business purpose? (The reason I ask is because we are very interested in learning what "services" people want out of our compiler other than simply "spit me out some IL for this source code".) – Eric Lippert Oct 13 at 16:55
Eric: Primarily for fun. However, I come up with some language ideas from time to time that I wish I could test. – Mehrdad Afshari Oct 13 at 16:57
@Mehrdad, if you do get some code going, can i play around with it :) – Stan R. Oct 13 at 17:07
@Stan R: There are plenty of open source C# compilers out there right now. Mono's C# compiler is written in C#, for instance. – Mehrdad Afshari Oct 13 at 17:09
Given you dont need modification, you dont really want to write much, do you? – leppie Oct 13 at 17:16
show 6 more comments

4 Answers

vote up 3 vote down

Take a look at C# Language Specification. In the chapter B. Grammar you'll find the grammar.

link|flag
Yeah, of course the spec contains grammar. However, the grammar in that Word document is scattered through the whole doc and is unsuitable for parser generation. – Mehrdad Afshari Oct 14 at 9:46
2  
It's not only scattered throughout; we have an appendix at the end with the whole thing in one place. You are probably right that it would take some modification to make it work for a parser generator. – Eric Lippert Oct 14 at 14:28
Eric: Oh, didn't notice that section. Thanks for pointing out. – Mehrdad Afshari Oct 14 at 16:27
Micheal: It's less than 40 pages long. When I think about it, it's possible to deal with it and start from scratch. +1 – Mehrdad Afshari Oct 14 at 16:30
vote up 1 vote down

Take a look at COCO/R it seems that they have the language specification for C# 3.0.

link|flag
looking into it, probably the best thing currently out there... – Mehrdad Afshari Oct 14 at 9:44
vote up -1 vote down

There isn't one apart from bits in ECMA docs and modified all over the place, and even that is insufficient. The language that is supposed to be open has enough quirks with 2.0 parsing to not bother..

That's why you see a lot of handmade parsers, and semantics will show up sooner or later.

Lambdas can easily target 2.0 (ie. same CLR 2.0 as always at least before NET 4.0) and often are, and all you have to do is get to the IL and decompiled anonymous method (via x tools out there).. probably not what you're looking for either, especially as it requires multiple roundtrips.

Parsing proprietary LINQ (and for what really), automatic properties (what a farce facility) and similar is a total suicide and waste of brain cells.. If you really need something badly, best to talk to JetBrain guys or stick to Mono.

If MS wants to know why people want control and less stupidity in not giving choices of inlining, deciding on struct heuristics for us, poor generics and 'using'-s non-DRYs, and much more, it's very simple (plenty of valid engineering and well documented reasons out there):

Reversibility / Machine-readability / Independence from next (5.0, 6.0, etc) idiot-waves and maintaining an investment in existing sources. That reads tech-neutral..

link|flag
As I mentioned in a comment, it's mostly an experiment and fun project. It's not expected to have business value. – Mehrdad Afshari Oct 13 at 18:49
Sure Mehrdad, but for us and many people we work with, it is of critical importance to switch an OS, vendor, db, compiler, language, stack, etc and not be locked-in. Even if you are building tools for your own use, eventually you'll hit on proprietary bits and start the maintainance headache. The message MS is never picking up that "open" means goodness for them, but they always "wonder" why people run away to alternatives after years of headaches in lock-in land.. Your best bet is Mono, Coco/R, RSharp and friends.. but frankly I wouldn't bother with any of it, been there.. – MajkaRa Tito Oct 13 at 18:56
4  
@Majkara - dude, Mehrdad already said that the project was for experimentation and fun. Why so serious? – Kev Oct 14 at 2:45
Mehrdad is cool and his rep says it all. Only did it because big bad MSDN is reading this and always 'wondering' and 'preaching' what we will be NOT able to do in the future.. locking, bloating and dumbing down the world really. – MajkaRa Tito Oct 14 at 8:19
vote up 1 vote down

Are you looking for something like this or this?

Please also refer to C# ANLTR grammar question.

link|flag
The linked grammar is not C# 3.0. It doesn't support lambdas. That's specifically important to me. – Mehrdad Afshari Oct 13 at 17:11
2  
It would seem that adding support for lambdas in terms of existing constructs in the grammar is fairly trivial, since you only need to define argument list. This will probably need LL(), however, since you can parse something like (a** and not know if this will end up being an expression like (a**b) (i.e. multiply a by the result of a dereference of b), or a lambda expression (a** b) =>, until you hit the =>. Since there's no limit on amount of indirection (pointer to pointer to ...), it looks like it it's LL() to me. But since ANTLR3 supports opt-in LL(*), it's not a problem. – Pavel Minaev Oct 13 at 19:27
@Pavel: It's not just that. It doesn't support generics. I'll probably write my own parser or grammar from scratch if I can't find a reasonably good C# 3.0 grammar. – Mehrdad Afshari Oct 13 at 19:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.