Tagged Questions

3
votes
1answer
2k 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 ...
0
votes
1answer
98 views

Creating shift-reduce / reduce-reduce free grammars

I'm trying to implement a simple Java like language parser in sablecc, although I'm constantly running into shift-reduce / reduce-reduce problems when implementing if, while and block statements. For ...