Lemon is a parser generator, maintained as part of the SQLite project, that generates an LALR(1) parser in the C programming language from an input context-free grammar.
0
votes
0answers
37 views
Parser reducing to early
I've got a grammar that basically looks like :
start ::= groups.
groups ::= groups group.
groups ::= group.
group(A) ::= IDENTIFIER identparams CURLY_OPEN assignments CURLY_CLOSE SEMICOLON.
group(A) ...
0
votes
0answers
31 views
Finding the Nodes of an Edge in LEMON graph library
Suppose that I have an Edge. How can I easily find which two nodes it connects? The documentation of LEMON is so sparse, I could not find info on this.
1
vote
1answer
43 views
“Partial parsing” with lemon
I have an SQL grammar built using the lemon parser generator. The normal entry point to parsing a command is a statement (like SELECT ...), so the statement is my %start non-terminal in the grammar. ...
0
votes
0answers
108 views
Dijkstra using Lemon graph library — distance type double
I'm using the lemon graph library in C++. I'm trying to use Dijkstra to find the shortest path between a source and the rest of the nodes; do edge distances have to be of type int? It seems that I ...
1
vote
1answer
45 views
Structures having fixed-size Eigen objects as member and containers
I have a structure with a fixed-size Eigen object as memeber,
struct EdgeStatus
{
Matrix<float,3,4> Data;
// ...other members...
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};
and I want to use it ...
0
votes
1answer
82 views
How do I get a Lemon parser to terminate itself on a newline?
Following this old tutorial, I am trying to get a lemon parser to automatically terminate parsing on an EOL token. The relevant part of the parser looks like this:
start ::= in .
in ::= .
in ::= in ...
0
votes
1answer
40 views
Precedence conflict with postfix/infix operators
Here is a grammar wrote for the lemon parser generator :
%left PostDecrementation.
%right PreDecrementation.
program ::= expression.
expression ::= Terminal.
expression ::= unaryoperation.
...
0
votes
0answers
26 views
Generating conflicting sentence with lemon
Are you aware of a way to generate a sentence which will conflict with specified grammar ?
For example the following grammar :
test ::= Hello foo.
test ::= Hello bar.
foo ::= Foo.
bar ::= Foo.
...
0
votes
2answers
76 views
How do I capture the line number of a syntax error in generated parser
All of the tokens I pass to Lemon are structures that have line number information attached.
Look at the syntax_error definition below
%name SinkParser
%token_prefix SINKPARSER_TOKEN_
%token_type ...
2
votes
2answers
130 views
How to handle same symbol used for two things lemon parser
I'm developing a domain specific language. Part of the language is exactly like C expression parsing semantics such as precidence and symbols.
I'm using the Lemon parser. I ran into an issue of the ...
1
vote
1answer
451 views
Generating a JavaScript SQL parser for SQLite3 (with Lemon? ANTLR3?)
For the last couple of weeks i've been diving into the pretty world of parsing SQL statements into something managable, only to find out that i'll probably need a full lexer/parser to properly handle ...
2
votes
1answer
138 views
Why is this grammar conflicts?
It is compiled with Lemon, which is a LALR(1) parser generator :
program ::= statement.
statement ::= ifstatement Newline.
statement ::= returnstatement Newline.
ifstatement ::= If Number A ...
2
votes
2answers
207 views
“Expected token” using lemon parser generator
Is there a known way to generate an "Expected token" list when a syntax error happens ? I'm using Lemon as parser generator.
0
votes
1answer
83 views
Shift/reduce conflict with expression call
When I'm trying to compile this simple parser using Lemon, I get a conflict but I can't see which rule is wrong. The conflict disappear if I remove the binaryexpression or the callexpression.
%left ...
0
votes
0answers
242 views
“hello world” parser for lemon
I try my best for hours now to create a y-file for the lemon parser (respectivly PEAR's PHP_LexerGenerator) that parses a simple "hello + world".
I used this (German) tutorial and yes it's nice to ...
2
votes
2answers
211 views
use variables in Lemon parser?
I want to allow mathematical variables in my Lemon parser-driven app. For example, if the user enters x^2+y, I want to then be able to evaluate this for 100000 different pairs of values of x and y, ...
4
votes
1answer
122 views
Troubles with lemon grammar (precedence?)
I'm having trouble with a simple grammar I have created to support function calls.
I am using the lemon-based PHP_ParserGenerator by Greg.
This is the relevant part of the grammar:
program ::= ...
2
votes
1answer
386 views
Ambiguous grammar with Lemon Parser Generator
So basically I want to parsed structure CSS code in PHP, using a lexer/parser generated by the PEAR packages PHP_LexerGenerator and PHP_ParserGenerator. My goal is to parse files like this:
selector, ...
2
votes
2answers
314 views
Simple Grammar for Lemon LALR Parser
I've been stuck with this since a while now. I want to parse something as simple as:
LIKES: word1 word2 .. wordN HATES: word1 word2 .. wordN
I am using Lemon+Flex. At the moment my Grammar looks ...
-1
votes
3answers
159 views
Debugging parser generated code
I have generated a parser code using Lemon Parser. I am not able to debug the generated code. Control shows some other source code than the currently executing statement. Breakpoints are displaced. I ...
1
vote
1answer
784 views
Bison passing back resulting AST
In lemon I was able to use the third parameter of the parsing function to pass back the result to the caller when the starting symbol was reduced.
How would I do the same in bison? Is it enough to ...
0
votes
1answer
265 views
Why are there 3 parsing conflicts in my tiny grammar?
//complete
start ::= template.
//template
template ::= template_elements.
template ::= template template_elements.
template ::= .
//template elements
template_elements(res) ::= COMMENT.
...
2
votes
1answer
588 views
Is the lemon parser LALR(1) or SLR(1)?
I'm reading the PHP portation of the lemon parser:
for ($i = 0; $i < $this->nstate; $i++) { /* Loop over all states */
$stp = $this->sorted[$i]->data;
for ($cfp = $stp->cfp; ...
1
vote
2answers
693 views
Lemon Graph Library on R using Rcpp
I think that this answer is a bit complex because it involves several things.
I want to do high performance computations with R particularly with graphs (networks). As a R package igraph is very ...
0
votes
0answers
137 views
What does symbols like expr:INTEGER mean?
programe ::= expr.
expr ::= INTEGER PLUS INTEGER.
expr ::= INTEGER TIMES INTEGER.
expr ::= INTEGER.
What :INTEGER for in expr:INTEGER?
Further more ,anyone knows what the states below means?
...
1
vote
0answers
108 views
Any insight on how lemon parses?
Here's an introduction on how lemon parses,
FindRulePrecedences:
Find precedence of symbols & set it
FirstSet:
Compute FIRST(X):
If X is a terminal, then FIRST(X) = {X}
X is a nonterminal, travel ...
1
vote
2answers
505 views
Fixing Lemon parsing confilcts
I'm writing up a small parser which parses constraints, using Flex and Lemon. Lemon is reporting a couple of parsing conflicts I haven't been able to get rid of. Are there any particular tricks for ...
13
votes
2answers
827 views
Lemon power or not?
For grammar parser, I used to "play" with Bison which have its pros/cons.
Last week, I noticed on SqLite site that the engine is done with another grammar parser: Lemon
Sounds great after reading ...
1
vote
2answers
845 views
Which is the best c++ parser generator on win32 environment (antlr, sablecc, lemon or bison)?
We have to write a DSL for our tool and for that we evaluating some c++ parser generator tools.
I have already gone through some of the SO posts, but still not sure which one to use. I already have ...
1
vote
2answers
256 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 ::= ...
0
votes
1answer
446 views
Lemon Parser-Generator: Are nonterminals not evaluated?
I try to learn parsers. Because my C skills are pretty low, I googled a PHP Lemon to learn sth about Parser Generators. Anyway, the code here should be readable for normal lemon friends, too.
As ...
3
votes
2answers
435 views
Recovering error tokens in parsing (Lemon)
I'm using Lemon as a parser generator, its error handling is the same as yacc's and bison's if you don't know Lemon.
Lemon has an option to define the error token in a set of rules in order to catch ...
0
votes
1answer
184 views
Parser expression for comma-separated function call parameters
Im writing a parser than can parse expressions like myfunc1(), myfunc2(param1) and myfunc3(param1, param2) (with an unknown amount of parameters). Now I'm trying to get my parse expressions right. I'm ...
2
votes
2answers
359 views
LALR(1) empty list of parameters for functions
I have a simple LALR(1) grammar, but I'm encountering a problem.
start ::= spec.
spec ::= MOD STRING top_stmt.
spec ::= top_stmt.
top_stmt ::= stmt.
top_stmt ::= conditional.
stmt ::= expr.
stmt ::= ...
