Starting from `lookahead`, are we looking at `prefix`?
(&self, prefix: &str)
| 182 | |
| 183 | // Starting from `lookahead`, are we looking at `prefix`? |
| 184 | fn looking_at(&self, prefix: &str) -> bool { |
| 185 | self.source[self.pos..].starts_with(prefix) |
| 186 | } |
| 187 | |
| 188 | // Starting from `lookahead`, are we looking at a number? |
| 189 | fn looking_at_numeric(&self) -> bool { |
no outgoing calls
no test coverage detected