(&self, msg: &'static str)
| 230 | } |
| 231 | |
| 232 | fn error(&self, msg: &'static str) -> Result<Option<Event>, ParserError> { |
| 233 | Err(ParserError { |
| 234 | line: self.line, |
| 235 | col: self.col, |
| 236 | msg, |
| 237 | }) |
| 238 | } |
| 239 | |
| 240 | fn parse_character(&mut self, c: char) -> Result<Option<Event>, ParserError> { |
| 241 | // println(fmt!("Now in state: %?", self.st)); |
no outgoing calls
no test coverage detected