| 21 | } |
| 22 | |
| 23 | IJsonHandler* |
| 24 | ExtensionsJsonHandler::readObjectKey(const std::string_view& str) { |
| 25 | this->_currentExtensionHandler = |
| 26 | this->_context.createExtensionHandler(str, this->_objectType); |
| 27 | if (this->_currentExtensionHandler) { |
| 28 | this->_currentExtensionHandler->reset(this, *this->_pObject, str); |
| 29 | return &this->_currentExtensionHandler->getHandler(); |
| 30 | } else { |
| 31 | return this->ignoreAndContinue(); |
| 32 | } |
| 33 | } |
| 34 | } // namespace CesiumJsonReader |
nothing calls this directly
no test coverage detected