| 63 | } |
| 64 | |
| 65 | IJsonHandler* JsonObjectJsonHandler::readDouble(double d) { |
| 66 | addOrReplace(*this->_stack.back(), d); |
| 67 | return this->doneElement(); |
| 68 | } |
| 69 | |
| 70 | IJsonHandler* JsonObjectJsonHandler::readString(const std::string_view& str) { |
| 71 | CesiumUtility::JsonValue& current = *this->_stack.back(); |
nothing calls this directly
no test coverage detected