| 326 | } |
| 327 | |
| 328 | bool JSONReader::parseDouble(double& output) { |
| 329 | if (!_parser.parseDouble(output)) { |
| 330 | return false; |
| 331 | } |
| 332 | _parser.tryParseWhitespaces(); |
| 333 | return true; |
| 334 | } |
| 335 | |
| 336 | bool JSONReader::parseBool(bool& output) { |
| 337 | if (tryParseToken("true")) { |
nothing calls this directly
no test coverage detected