Tagged Questions
3
votes
2answers
438 views
bison shift/reduce problem moving add op into a subexpr
Originally in the example there was this
expr:
INTEGER
| expr '+' expr { $$ = $1 + $3; }
| expr '-' expr { $$ = $1 - $3; }
;
I wanted it to be ...
2
votes
2answers
490 views
Bison Shift/Reduce conflict for simple grammar
I'm building a parser for a language I've designed, in which type names start with an upper case letter and variable names start with a lower case letter, such that the lexer can tell the difference ...
2
votes
2answers
185 views
Why do i have a shift reduce/conflict on the ')' and not '('?
I have syntax like
%(var)
and
%var
and
(var)
My rules are something like
optExpr:
| '%''('CommaLoop')'
| '%' CommaLoop
CommaLoop:
val | CommaLoop',' val
Expr:
MoreRules
...
2
votes
4answers
1k views
When is an ambiguous grammar or production rule OK? (bison shift/reduce warnings)
There are certainly plenty of docs and howtos on resolving shift/reduce errors. The bison docs suggest the correct solution is usually to just %expect them and deal with it.
When you have things ...
1
vote
2answers
444 views
Telling Bison/Yacc to shift and not reduce to resolve a conflict
I have a situation where there is a rule with a shift/reduce conflict that i understand. I want a rule to never reduce until at the last moment possible (end of line). So I would like to say always ...
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 ...
0
votes
1answer
59 views
Dangling Else in Bison grammar
The following grammar suffers from the dangling else problem, even though I've tried to solve it after reading http://marvin.cs.uidaho.edu/~heckendo/CS445/danglingElse.html I'm wondering if you can ...
0
votes
0answers
265 views
remove shift/reduce errors - grammes and compilation
i'm using Flex and Bison to compile a grammar. I'm a little clueless.
I have two shift/reduce errors. The both are with the same token. That token is not reduced anywhere else so the errors must be ...