Lines Matching refs:recursion
756 leads out of the recursion.
1712 line if possible." The left recursion makes this rule into a loop.
2996 recursion, because that is the only way to define a sequence of any
3005 right hand side, we call this "left recursion". By contrast, here the
3006 same construct is defined using "right recursion":
3012 Any kind of sequence can be defined using either left recursion or right
3013 recursion, but you should always use left recursion, because it can
3015 Right recursion uses up space on the Bison stack in proportion to the
3020 "Indirect" or "mutual" recursion occurs when the result of the rule
5403 usually results from using a right recursion instead of a left
5404 recursion, *Note Recursive Rules: Recursion.
7800 Left recursion
7862 Right recursion
8635 * left recursion: Recursion. (line 16)
8669 * mutual recursion: Recursion. (line 32)
8720 * right recursion: Recursion. (line 16)