Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
2
votes
4answers
440 views

bison shift instead of reduce. With reduce/reduce errors

In my language i can write a = 1 b = 2 if true { } else { } if true { } **Here is the problem** else {} My grammer doesnt support newlines between statements. An else can only be used with an if. ...
1
vote
2answers
55 views

How do i tell bison there is a syntax error?

What happen is there is a specific case where after analyzing the AST i will know if there is an error or not when the rule is finished. I tried yyerror("blah") with no luck. Because i cant tell it ...
0
votes
1answer
79 views

Bison reduce/reduce

I am new to Bison parsing and I cannot understand how it works. I have the following grammar, where I have kept the bare minimum to highlight the problem. %left '~' %left '+' %token T_VARIABLE %% ...
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 ...