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
4answers
236 views
yacc shift reduce problem
i have what i think is a simple part of my grammar this is getting an error from yacc. i know i need to add a %prec somewhere, but not really sure where.
Assignment : Ref '=' Ref
| Ref '=' ...
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
...
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
82 views
Happy/YACC reducing when it should shift
I'm working on a parser and I'm really frustrated. In the language, we can have an expression like:
new int[3][][]
or
new int[3]
Most of it parses correctly, except for the empty arrays at the ...
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 ...
0
votes
2answers
161 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 ...