(&self, msg: &'static str)
| 37 | c |
| 38 | } |
| 39 | fn err(&self, msg: &'static str) -> ParseError { ParseError { msg, pos: self.pos } } |
| 40 | |
| 41 | fn expect(&mut self, c: char) -> Result<(), ParseError> { |
| 42 | if self.peek() == Some(c) { self.bump(); Ok(()) } |
no outgoing calls
no test coverage detected