(&self)
| 35 | } |
| 36 | |
| 37 | fn current_source_location(&self) -> SourceLocation { |
| 38 | SourceLocation { |
| 39 | line_start: self.line_start, |
| 40 | line_end: self.line_end, |
| 41 | column_start: self.column_start, |
| 42 | column_end: self.column_end, |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | fn tokenize_characters(&mut self) -> Result<Vec<Token>, Box<Diagnostic>> { |
| 47 | let mut tokens: Vec<Token> = Vec::new(); |
no outgoing calls
no test coverage detected