Lines Matching full:parser
37 4: How the Parser Works
42 specification to the parser is complex, and will not be discussed
45 The parser itself, however, is relatively simple,
51 The parser produced by Yacc consists
53 The parser is also capable of reading and remembering the next
70 A move of the parser is done as follows:
72 Based on its current state, the parser decides
80 if needed, the parser decides on its next action, and
88 action is the most common action the parser takes.
106 Reduce actions are appropriate when the parser has seen
152 which was the state the parser was in before beginning to
175 The parser then behaves as if it had seen the left side at that time.
198 The other two parser actions are conceptually much simpler.
204 the endmarker, and indicates that the parser has successfully
208 action, on the other hand, represents a place where the parser
213 The parser reports an error, and attempts to recover the situation and
234 is produced, with a human-readable description of the parser.
292 It is instructive to follow the steps of the parser while
296 The parser needs to refer to the input in order to decide
316 the parser reduces by rule 2.
348 causing the parser to enter state 1.
356 The reader is urged to consider how the parser works