| 13 | // We do not use optional values yet, all empty strings arrays objects are saved as is |
| 14 | |
| 15 | JsonOutputStreamValue::JsonOutputStreamValue() : root(JsonValue::NIL) {} |
| 16 | |
| 17 | void JsonOutputStreamValue::object_key(common::StringView name, bool optional) { |
| 18 | invariant(!m_next_key.data(), ""); |
nothing calls this directly
no outgoing calls
no test coverage detected