(&self, n: u8)
| 329 | |
| 330 | #[inline] |
| 331 | pub fn peek_n_including_whitespace(&self, n: u8) -> Cursor { |
| 332 | self.peek_n_with_skip(n, self.skip.remove(Kind::Whitespace)) |
| 333 | } |
| 334 | |
| 335 | pub fn to_source_cursor(&self, cursor: Cursor) -> SourceCursor<'a> { |
| 336 | SourceCursor::from(cursor, cursor.str_slice(self.source_text)) |
nothing calls this directly
no test coverage detected