| 310 | } |
| 311 | |
| 312 | bool JSONReader::parseInt(int32_t& output) { |
| 313 | if (!_parser.parseInt(output)) { |
| 314 | return false; |
| 315 | } |
| 316 | _parser.tryParseWhitespaces(); |
| 317 | return true; |
| 318 | } |
| 319 | |
| 320 | bool JSONReader::parseUInt(uint32_t& output) { |
| 321 | if (!_parser.parseUInt(output)) { |
nothing calls this directly
no test coverage detected