(&self, t: &Token)
| 346 | pub(super) fn at_end(&mut self) -> bool { self.peek().is_none() } |
| 347 | |
| 348 | pub(super) fn lexeme(&self, t: &Token) -> &'src str { &self.source[t.start..t.end] } |
| 349 | |
| 350 | /* Consume the next token and return its source text as a String. */ |
| 351 | pub(super) fn advance_text(&mut self) -> String { |
no outgoing calls
no test coverage detected