Content deleted Content added
m Open access bot: doi added to citation with #oabot. |
→Summary: Copyedit: The source of a parser's input is a stream, not a "stack" |
||
Line 7:
== Summary ==
Intuitively, recursive ascent is a literal implementation of the [[LR parser|LR parsing]] concept. Each function in the parser represents a single LR [[Finite state machine|automaton]] state. Within each function, a multi-branch statement is used to select the appropriate action based on the current token
* '''Shift''' - Encoded as a function call, effectively jumping to a new automaton state.
|