0
votes
2answers
23 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
2answers
33 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
2answers
107 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 …
1
vote
2answers
383 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 …
0
votes
2answers
443 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 …
2
votes
3answers
250 views
Problem with a shift-reduce conflict in my grammar
I'm trying to write a small parser with Irony. Unfortunately I get a "shift-reduce conflict". Grammars are not my strong point, and I only need to get this one small thingy done. Here's the reduced …
0
votes
2answers
67 views
Help with Shift/Reduce conflict - Trying to model (X A)* (X B)*
Im trying to model the EBNF expression
("declare" "namespace" ";")* ("declare" "variable" ";")*
I have built up the yacc (Im using MPPG) grammar, which seems to represent this, but it fails to …
2
votes
4answers
541 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 …
2
votes
1answer
303 views
Shift reduce and reduce reduce conflicts
I'm having a hard time wrapping my head around this and need some help understanding shift reduce and reduce reduce conflicts. I have a grammar which I can't seem to understand why it's problematic. I …
