(&self, token: &str)
| 130 | } |
| 131 | |
| 132 | pub fn is_next_token(&self, token: &str) -> bool { |
| 133 | self.input.starts_with(token) |
| 134 | } |
| 135 | |
| 136 | /// eat tokens until meet this `token`. It does not consume `token`. |
| 137 | pub fn eat_token_until(&mut self, token: &str) -> Result<&'de str> { |
no outgoing calls
no test coverage detected