Tagged Questions
4
votes
3answers
964 views
Issue resolving a shift-reduce conflict in my grammar
I'm trying to write a small parser with Irony. Unfortunately I get a "shift-reduce conflict". Grammars are not my strong point, and I only need to get this one small thingy done. Here's the reduced ...
2
votes
1answer
131 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> | ...
2
votes
1answer
162 views
Packrat parser conflict
Suppose I try to parse a string abc with a Packrat Parser:
lazy val abc: PackratParser[AnyRef] = ab ~ "c"
lazy val ab: PackratParser[AnyRef] = (ab | abc) ~ "b" | "a"
def parse(in: String) = ...
2
votes
1answer
243 views
resolve grammar ambiguity
I'll post the rules of the grammar in question to start.
interface_sections : main_interface bind_buttons bind_functions bind_panel_items
; /* Components of a gui program */
...
2
votes
4answers
248 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 '=' ...
1
vote
2answers
930 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;
...
1
vote
1answer
392 views
Shift / reduce conflicts in grammar of arithmetic expression with n-ary sums / products
Parsing binary sums / products are easy, but I'm having troubles defining a grammar that parses
a + b * c + d + e
as
sum(a, prod(b, c), d, e)
My initial (naive) attempt generated 61 shift / ...
1
vote
2answers
3k 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 ...
0
votes
1answer
109 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 ...