(&mut self, bytes: usize)
| 65 | |
| 66 | #[inline] |
| 67 | fn skip_bytes(&mut self, bytes: usize) -> &str { |
| 68 | let skipped_str = &self.source[self.cursor..self.cursor + bytes]; |
| 69 | self.cursor += bytes; |
| 70 | skipped_str |
| 71 | } |
| 72 | |
| 73 | /// Returns the current position of the parser considering the offset. |
| 74 | #[inline] |
no outgoing calls
no test coverage detected