Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
945 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 ...
3
votes
2answers
438 views

bison shift/reduce problem moving add op into a subexpr

Originally in the example there was this expr: INTEGER | expr '+' expr { $$ = $1 + $3; } | expr '-' expr { $$ = $1 - $3; } ; I wanted it to be ...
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
1answer
118 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
160 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
233 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
1answer
664 views

How to resolve shift reduce conflicts in my grammar?

I'm writing a compiler from (reduced) Pascal into ARM asm. I'm at the second step of the process - after writing lexical analyzer now I'm working on syntax analysis with java cup. I have written my ...
2
votes
2answers
495 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
236 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 '=' ...
2
votes
2answers
185 views

Why do i have a shift reduce/conflict on the ')' and not '('?

I have syntax like %(var) and %var and (var) My rules are something like optExpr: | '%''('CommaLoop')' | '%' CommaLoop CommaLoop: val | CommaLoop',' val Expr: MoreRules ...
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
2answers
844 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
380 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
446 views

Telling Bison/Yacc to shift and not reduce to resolve a conflict

I have a situation where there is a rule with a shift/reduce conflict that i understand. I want a rule to never reduce until at the last moment possible (end of line). So I would like to say always ...
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
61 views

Dangling Else in Bison grammar

The following grammar suffers from the dangling else problem, even though I've tried to solve it after reading http://marvin.cs.uidaho.edu/~heckendo/CS445/danglingElse.html I'm wondering if you can ...
0
votes
1answer
100 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
1answer
82 views

Happy/YACC reducing when it should shift

I'm working on a parser and I'm really frustrated. In the language, we can have an expression like: new int[3][][] or new int[3] Most of it parses correctly, except for the empty arrays at the ...
0
votes
0answers
265 views

remove shift/reduce errors - grammes and compilation

i'm using Flex and Bison to compile a grammar. I'm a little clueless. I have two shift/reduce errors. The both are with the same token. That token is not reduced anywhere else so the errors must be ...
0
votes
1answer
274 views

shift/reduce conflict with SableCC

I'm at my first experience with SableCC and grammar definition. I have the following grammar (a part of it): query = {atop} attroperator | {query_par} l_par query r_par | ...
0
votes
2answers
161 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 ...