Tagged Questions
The compiler-compiler tag has no wiki summary.
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 ...
2
votes
1answer
592 views
What is TinyPG and how does it work?
What is TinyPG and how does it work? I know its a "compiler-compiler" but how do I get started and create my own compiler in C#?
2
votes
1answer
953 views
Use existing languages in BNF with TinyPG?
How can I use these BNF grammars which are in GOLD meta-syntax (RegExp + BNF) with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF to EBNF?
I believe ...
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 ...
0
votes
1answer
70 views
Need help regarding one LALR(1) parsing
I am trying to parse a context-free language, called Context Free Art. I have created its parser in Javascript using a YACC-like JS LALR(1) parser generator JSCC.
Take the example of following CFA ...