* lex_peek * * what is the current look_ahead token? */
| 78 | * what is the current look_ahead token? |
| 79 | */ |
| 80 | static inline JsonTokenType |
| 81 | lex_peek(JsonLexContext *lex) |
| 82 | { |
| 83 | return lex->token_type; |
| 84 | } |
| 85 | |
| 86 | /* |
| 87 | * lex_expect |
no outgoing calls
no test coverage detected