The shift-reduce tag has no wiki summary.
7
votes
1answer
92 views
Difference between shifting and look-ahead
Given a simple grammar, like
rule1
:= token1 token2 token3 token4
|| token1 token2 token3 token3;
What's the difference between shifting the first three tokens, then looking at the fourth ...
5
votes
2answers
139 views
Shift-reduce: when to stop reducing?
I'm trying to learn about shift-reduce parsing. Suppose we have the following grammar, using recursive rules that enforce order of operations, inspired by the ANSI C Yacc grammar:
S: A;
P
: ...
2
votes
1answer
266 views
Shift/reduce conflict in yacc due to look-ahead token limitation?
I've been trying to tackle a seemingly simple shift/reduce conflict with no avail. Naturally, the parser works fine if I just ignore the conflict, but I'd feel much safer if I reorganized my rules. ...
0
votes
1answer
254 views
How should binary operators be defined in bison?
I'm writing a parser in C with bison, and while it appears to work correctly in all circumstances I've tried so far, I get a bunch of shift/reduce warnings on my binary operators (and one on my unary ...