Tagged Questions
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 ...