Lines Matching full:token
62 | Explain how an SR conflict between TOKEN and RULE was resolved: |
67 log_resolution (rule *r, symbol_number token,
79 Conflict between rule %d and token %s resolved as shift"),
81 symbols[token]->tag);
87 Conflict between rule %d and token %s resolved as reduce"),
89 symbols[token]->tag);
94 Conflict between rule %d and token %s resolved as an error"),
96 symbols[token]->tag);
107 symbols[token]->tag);
113 symbols[token]->tag,
120 symbols[token]->tag);
126 symbols[token]->tag);
131 symbols[token]->tag);
140 | Turn off the shift recorded for the specified token in the |
146 flush_shift (state *s, int token)
151 bitset_reset (look_ahead_set, token);
154 && TRANSITION_SYMBOL (trans, i) == token)
160 | Turn off the reduce recorded for the specified token for the |
166 flush_reduce (bitset look_ahead_tokens, int token)
168 bitset_reset (look_ahead_tokens, token);
199 /* Shift-reduce conflict occurs for token number i
201 The precedence of shifting is that of token i. */
237 /* Record an explicit error for this token. */
365 | count one conflict for each token that has any reduce/reduce |