(&self, msg: impl Into<String>)
| 32 | pub fn pos(&self) -> usize { self.pos } |
| 33 | |
| 34 | fn err(&self, msg: impl Into<String>) -> JsonError { |
| 35 | JsonError { msg: msg.into(), pos: self.pos } |
| 36 | } |
| 37 | |
| 38 | fn skip_ws(&mut self) { |
| 39 | while self.pos < self.src.len() { |
no outgoing calls
no test coverage detected