Could someone please explain to me why recursive-descent parsers can't work with a grammar containing left recursion?
|
|
consider:
the equivalent code is
see the infinite recursion? |
||
|
|
|
|
For whoever is interested
can be rewritten as:
The general form of the transformation is: any one of the non left recursive disjuncts followed by any number of the left recursive disjuncts without the first element. Reforming the action code is a bit trickery but I thing that can be plug-n-chug as well. |
||||
|
