(&mut self)
| 184 | /// Consume the current byte and advance position. |
| 185 | #[inline] |
| 186 | fn advance(&mut self) { |
| 187 | if self.position < self.content.len() { |
| 188 | self.position += 1; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | /// Check if a byte is a word character (alphanumeric or underscore). |
| 193 | #[inline] |
no test coverage detected