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
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
2answers
530 views
Bison Shift/Reduce conflict for simple grammar
I'm building a parser for a language I've designed, in which type names start with an upper case letter and variable names start with a lower case letter, such that the lexer can tell the difference ...
2
votes
4answers
1k views
When is an ambiguous grammar or production rule OK? (bison shift/reduce warnings)
There are certainly plenty of docs and howtos on resolving shift/reduce errors. The bison docs suggest the correct solution is usually to just %expect them and deal with it.
When you have things ...
1
vote
1answer
391 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 ...
1
vote
3answers
4k 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 ...
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 ...
0
votes
2answers
165 views
Help with Shift/Reduce conflict - Trying to model (X A)* (X B)*
Im trying to model the EBNF expression
("declare" "namespace" ";")* ("declare" "variable" ";")*
I have built up the yacc (Im using MPPG) grammar, which seems to represent this, but it fails to ...