Tagged Questions
4
votes
1answer
126 views
Scheme - LALR parser generation- input from a string
We are trying to generate (in guile) a parser and a lexer that read characters from a string instead of stdin.
We started modifying the calculator example included in the code at
...
2
votes
1answer
322 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> | ...