| 111 | // ── Internal scanning ───────────────────────────────────────────────────────── |
| 112 | |
| 113 | char Tokenizer::peek_char() const { |
| 114 | if (pos_ >= source_.size()) return '\0'; |
| 115 | return source_[pos_]; |
| 116 | } |
| 117 | |
| 118 | char Tokenizer::consume_char() { |
| 119 | char c = source_[pos_++]; |
nothing calls this directly
no outgoing calls
no test coverage detected