Tagged Questions
7
votes
1answer
136 views
Putting nodes into the parse tree which shouldn't be there
I am writing a parser for a language, and the scanner is designed to
either also return unneeded terminals (e.g. whitespacing) OR
not to do so
based on a boolean flag.
Now, in the parser, I don't ...
5
votes
2answers
339 views
LALR(2) dangling else
Is LALR(2) able to handle the dangling else case naturally (without any special rules, as with LALR(1))?
Thanks