| 83 | } |
| 84 | |
| 85 | bool JSONReader::parseToken(char token) { |
| 86 | if (!_parser.parse(token)) { |
| 87 | return false; |
| 88 | } |
| 89 | |
| 90 | _parser.tryParseWhitespaces(); |
| 91 | return true; |
| 92 | } |
| 93 | |
| 94 | bool JSONReader::tryParseToken(std::string_view token) { |
| 95 | if (!_parser.tryParse(token)) { |
nothing calls this directly
no test coverage detected