(source: &str)
| 1708 | |
| 1709 | #[track_caller] |
| 1710 | fn lex_source(source: &str) -> LexerOutput { |
| 1711 | lex_valid(source, Mode::Module, TextSize::default()) |
| 1712 | } |
| 1713 | |
| 1714 | #[track_caller] |
| 1715 | fn lex_source_with_offset(source: &str, start_offset: TextSize) -> LexerOutput { |
no test coverage detected