Tagged Questions
5
votes
2answers
227 views
Learning bison: What are context-free grammars and LALR(1)?
I am reading this bison introduction.
I have two questions and it will be great if someone can help me understand:
What does term context free grammar mean?
From the link above: Not all ...
5
votes
2answers
701 views
LALR(1) or GLR on Windows - Alternatives to Bison++ / Flex++ that are current?
I have been using the same version of bison++ (1.21-8) and flex++ (2.3.8-7) since 2002.
I'm not looking for an alternative to LALR(1) or GLR at this time, just looking for the most current options. ...
3
votes
2answers
1k views
Left Recursion in Grammar Results in Conflicts
Throughout a Bison grammar I am using right recursion, and I have read that left recursion is better because it doesn't have to build the whole stack first.
However, when I try to switch to left ...
2
votes
1answer
70 views
Ambiguity in Bison grammar
I've got a problem in my Bison grammar. I've got a pair of shift/reduces which are fine, and six reduce/reduces. The issue is that I don't understand how the reduce/reduce conflicts come about, since ...
1
vote
1answer
162 views
Bison- shift/reduce conflicts
I know that in Bison code, there are some shift/reduce conflicts to be expected, and the normal C grammar produces one for if/else. However, I've got a grammar that produces 330 other shift/reduce ...
1
vote
1answer
68 views
Actions order in Bison
I'm trying to use Bison to generate a parser, in C++. The grammar is fine, but I'm having some quick trouble with the actions. Here's a simple sample:
statements
: statement
| statements statement;
...
1
vote
1answer
131 views
bison/yacc grammar disambiguation
I have following bison grammar (as part of more complex grammar):
expression:
IDENTIFIER
| CONST
| LAMBDA match_block
;
match_block:
pattern '=' expression
| match_block '|' ...
1
vote
1answer
207 views
Implementing eval and load functions inside a scripting engine with Flex and Bison
Hy guys, i'm developing a scripting engine with flex and bison and now
i'm implementing the eval and load functions for this language.
Just to give you an example, the syntax is like :
import std.*;
...
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
2answers
78 views
Ambiguous grammar (using Bison)
I've got a problem with an ambiguous grammar. I've got this:
%token identifier
%token lolcakes
%start program
%%
program
: call_or_definitions;
expression
: identifier
| lolcakes;
...
0
votes
1answer
100 views
GPPG (bison) - How to implement an “expression expression” concept
We're using GPPG (essentially bison for C#) to generate a parser for a programming language. Everything is going great except for one really nasty bit. The language we are parsing has a sort of ...