(source: &str)
| 1687 | |
| 1688 | #[track_caller] |
| 1689 | fn lex_source(source: &str) -> LexerOutput { |
| 1690 | lex_valid(source, Mode::Module, TextSize::default()) |
| 1691 | } |
| 1692 | |
| 1693 | #[track_caller] |
| 1694 | fn lex_source_with_offset(source: &str, start_offset: TextSize) -> LexerOutput { |
no test coverage detected