Tagged Questions
7
votes
1answer
116 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 ...
3
votes
2answers
1k views
Left Recursion in Grammar Results in Conflicts
Throughout a Bison grammar I am using right recursion, and I have read that left recursion is better because it doesn't have to build the whole stack first.
However, when I try to switch to left ...