| 74 | } |
| 75 | |
| 76 | bool JSONReader::tryParseToken(char token) { |
| 77 | if (!_parser.tryParse(token)) { |
| 78 | return false; |
| 79 | } |
| 80 | |
| 81 | _parser.tryParseWhitespaces(); |
| 82 | return true; |
| 83 | } |
| 84 | |
| 85 | bool JSONReader::parseToken(char token) { |
| 86 | if (!_parser.parse(token)) { |
nothing calls this directly
no test coverage detected