Tagged Questions
The lr1 tag has no wiki summary.
2
votes
1answer
653 views
LR1 Parser and Epsilon
I'm trying to understand how LR1 Parsers work but I came up with a strange problem: What if the grammar contains Epsilons? For instance: if I have the grammar:
S -> A
A -> a A | B
B -> a
...
0
votes
1answer
39 views
what's the matter with this grammar
s : cmd
| cmd SOMETHING
cmd :WORD
WORD and SOMETHING are non null terminals
it's an LR1 grammar so bison should parse it without problems.
however i faced an unexpected problem in runtime:
...
0
votes
1answer
49 views
Dealing with infinite loops when constructing states for LR(1) parsing
I'm currently constructing LR(1) states from the following grammar.
S->AS
S->c
A->aA
A->b
where A,S are nonterminals and a,b,c are terminals.
This is the construction of I0
I0: S' ...