(source: &str)
| 1774 | } |
| 1775 | |
| 1776 | fn lex_source(source: &str) -> LexerOutput { |
| 1777 | lex_valid(source, Mode::Module, TextSize::default()) |
| 1778 | } |
| 1779 | |
| 1780 | fn lex_source_with_offset(source: &str, start_offset: TextSize) -> LexerOutput { |
| 1781 | lex_valid(source, Mode::Module, start_offset) |
no test coverage detected