Tagged Questions

0
votes
2answers
59 views

What is the best LALR parser generator for C++ that can generate meaningful error messages

I am looking for the best solution for a LALR parser generator for C++ that will allow me to generate really good error messages. I really hate the syntax errors that MySQL generates and I want to …
2
votes
1answer
44 views

LALR(2) dangling else

Hello Is LALR(2) able to handle the dangling else case naturally (without any special rules, as with LALR(1))? Thanks
1
vote
1answer
39 views

Resolving a shift/reduce conflict in an LALR parser

I've been using PLY to build up a parser for my language, however I've got a shift/reduce conflict that's causing me some trouble. My language has generic types with a syntax ala C++ templates. So …
3
votes
2answers
149 views

Left Recursion in Grammar Results in Conflicts

Throughout a Bison grammar I am using right recursion, and I have read that left recursion is better because it doesn't have to build the whole stack first. However, when I try to switch to left …
0
votes
2answers
479 views

How to fix YACC shift/reduce conflicts from post-increment operator?

I'm writing a grammar in YACC (actually Bison), and I'm having a shift/reduce problem. It results from including the postfix increment and decrement operators. Here is a trimmed down version of the …
1
vote
2answers
404 views

How to resolve a shift-reduce conflict in unambiguous grammar

I'm trying to parse a simple grammar using an LALR(1) parser generator (Bison, but the problem is not specific to that tool), and I'm hitting a shift-reduce conflict. The docs and other sources I've …
4
votes
3answers
371 views

Is there a good yacc/bison type LALR parser generator for .NET ?

Thanks in advance.