(&self)
| 1441 | |
| 1442 | #[inline] |
| 1443 | fn token_text(&self) -> &'src str { |
| 1444 | &self.source[self.token_range()] |
| 1445 | } |
| 1446 | |
| 1447 | /// Retrieves the current offset of the cursor within the source code. |
| 1448 | // SAFETY: Lexer doesn't allow files larger than 4GB |
no test coverage detected