Tagged Questions
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. ...
1
vote
1answer
69 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
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
2answers
615 views
What is the best LALR parser generator for C++ that can generate meaningful error messages
I am looking for the best solution for a LALR parser generator for C++ that will allow me to generate really good error messages. I really hate the syntax errors that MySQL generates and I want to ...
0
votes
2answers
157 views
How can I remove the function call ambiguity from a Lemon grammar?
I have the following lemon grammar (simplified from the real grammar):
%right ASSIGN .
%nonassoc FN_CALL .
program ::= expression .
expression ::= expression ASSIGN expression .
expression ::= ...
-1
votes
1answer
108 views
Recursive descent vs recursive ascent parsing
If I'm writing my own custom parser, how can I know if I'm writing a recursive ascent parser? I'm definitely interested in the O(n) complexity of LALR parsing (plus I already have a LALR grammar) and ...