(source: &str, start_offset: TextSize)
| 1692 | |
| 1693 | #[track_caller] |
| 1694 | fn lex_source_with_offset(source: &str, start_offset: TextSize) -> LexerOutput { |
| 1695 | lex_valid(source, Mode::Module, start_offset) |
| 1696 | } |
| 1697 | |
| 1698 | #[track_caller] |
| 1699 | fn lex_jupyter_source(source: &str) -> LexerOutput { |
nothing calls this directly
no test coverage detected