Tagged Questions
6
votes
3answers
1k views
Is there a good yacc/bison type LALR parser generator for .NET?
Is there a good yacc/bison type LALR parser generator for .NET ?
3
votes
2answers
1k 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 ...
2
votes
1answer
69 views
How does the yacc/bison LALR(1) algorithm treat “empty” rules?
In a LALR(1) parser, the rules in the grammar are converted into a parse table that effectively says "If you have this input so far, and the lookahead token is X, then shift to state Y, or reduce by ...
1
vote
1answer
132 views
bison/yacc grammar disambiguation
I have following bison grammar (as part of more complex grammar):
expression:
IDENTIFIER
| CONST
| LAMBDA match_block
;
match_block:
pattern '=' expression
| match_block '|' ...
1
vote
1answer
602 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 ...
1
vote
3answers
4k 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 ...