(&mut self, bytes: usize)
| 111 | |
| 112 | #[inline] |
| 113 | fn skip_bytes(&mut self, bytes: usize) -> &str { |
| 114 | let skipped_str = &self.source[self.cursor..self.cursor + bytes]; |
| 115 | self.cursor += bytes; |
| 116 | skipped_str |
| 117 | } |
| 118 | |
| 119 | /// Returns the current position of the parser considering the offset. |
| 120 | #[inline] |
no outgoing calls
no test coverage detected