| 50 | } |
| 51 | |
| 52 | IJsonHandler* JsonHandler::readObjectStart() { |
| 53 | this->reportWarning("An object value is not allowed and has been ignored."); |
| 54 | return this->ignoreAndReturnToParent()->readObjectStart(); |
| 55 | } |
| 56 | |
| 57 | IJsonHandler* JsonHandler::readObjectKey(const std::string_view& /*str*/) { |
| 58 | return nullptr; |
no test coverage detected