I'm looking for a parser generator that given an EBNF for a LL(k) language will give me a C# parser and generate classes the types defined in the EBNF.

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

Gold is OK as far a parser generators go.

link|improve this answer
I'd say its pretty good – SpaceghostAli Jul 29 '09 at 12:50
OP asked for LL(k). Gold is LALR. – Ira Baxter Oct 2 '10 at 20:32
feedback

ANTLR (nothing else to say)

link|improve this answer
4  
well you need to say something to get to 15 chars. ;) +1 – kenny Feb 10 '11 at 19:17
feedback

You might want to look at MinosseCC, a port of JavaCC to C#. Another possibility is Spart.

link|improve this answer
feedback

Grammatica supports LL(k). http://grammatica.percederberg.net/

link|improve this answer
feedback

Find Irony in http://irony.codeplex.com/

PROS: It is simple CONS: -Lack of document -Rather Slow

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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