Tagged Questions
6
votes
1answer
316 views
Is this grammar not LR(1)?
I'm working on parse generator for PHP. Currently I'm trying to implement canonical LR(1) parser, but it outputs reduce-reduce conflict on following grammar. Is this grammar not LR(1)? Or should I ...
6
votes
4answers
3k views
What is a good C# compiler-compiler/parser generator?
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.
5
votes
5answers
405 views
What is the fastest parser generator tool for C# output?
I am looking for a parser generator tool which gives C# output and fairly fast. My objective is to parse JSON like text and create CLR object out of it. I used GOLD Parser engine for this but it ...
0
votes
0answers
39 views
Parser generator (compiler-compiler) that supports variable keywords and operators for Java?
Are there any parser generators (compiler-compilers) that support varying keywords and operators?
My language has customisable keywords and operators (can have multiple symbols and have letters in ...