Rev | Author | # | Line |
---|---|---|---|
1 | StuartYeates | 1 | A [Parser] that creates a frame on the stack for every state it enters. |
2 | |||
3 | Handcrafted parsers are typically [RecursiveDescentParser]s, where as [CompilerCompiler] generated parsers are typically [FiniteStateMachine]s. | ||
4 | |||
5 | Compare [Bison] and [FiniteStateMachine] |