(chars: &'a str)
| 30 | } |
| 31 | |
| 32 | pub fn tokenize(chars: &'a str) -> Result<Vec<Token>, Box<Diagnostic>> { |
| 33 | let chars: Vec<char> = chars.chars().collect(); |
| 34 | Tokenizer::new(&chars).tokenize_characters() |
| 35 | } |
| 36 | |
| 37 | fn current_source_location(&self) -> SourceLocation { |
| 38 | SourceLocation { |
nothing calls this directly
no test coverage detected