0
votes
2answers
37 views

Where is this shift/reduce conflict coming from in Bison?

I am trying to get the hang of parsing by defining a very simple language in Jison (a javascript parser). It accepts the same / very similar syntax to bison. Here is my grammar: %token INT TRUE ...
2
votes
1answer
320 views

How to avoid a shift reduce conflict in a LALR grammar for parsing nested lists?

I would like to create a LALR grammar to parse nested lists, but I get always a shift/reduce conflict. I have the list1 which is a list of type1 items and list2: <list1> ::= <type1> | ...
1
vote
2answers
2k views

How to solve a shift/reduce conflict?

I'm using CUP to create a parser that I need for my thesis. I have a shift/reduce conflict in my grammar. I have this production rule: command ::= IDENTIFIER | IDENTIFIER LPAREN parlist RPAREN; ...
2
votes
2answers
5k 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 ...
6
votes
3answers
7k 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 ...