(&self, c: u8)
| 296 | } |
| 297 | |
| 298 | fn next_char(&self, c: u8) -> usize { |
| 299 | let mut q = self.cur; |
| 300 | while q < self.source.len() - 1 { |
| 301 | if self.source.get(q) == c { |
| 302 | break; |
| 303 | } |
| 304 | q += 1; |
| 305 | } |
| 306 | q |
| 307 | } |
| 308 | |
| 309 | /// First, tokenize the binary stream. |
| 310 | /// Then, push some primitives onto the value stack. |
no test coverage detected