(&mut self)
| 827 | } |
| 828 | |
| 829 | fn skip_ws(&mut self) { |
| 830 | while matches!(self.peek(), Some(ch) if ch.is_whitespace()) { |
| 831 | self.pos += 1; |
| 832 | } |
| 833 | } |
| 834 | |
| 835 | fn parse_value(&mut self) -> Option<String> { |
| 836 | self.skip_ws(); |
no outgoing calls
no test coverage detected