| 4094 | bool Value::isObject() const { return type() == objectValue; } |
| 4095 | |
| 4096 | Value::Comments::Comments(const Comments &that) : ptr_{cloneUnique(that.ptr_)} {} |
| 4097 | |
| 4098 | Value::Comments::Comments(Comments &&that) noexcept : ptr_{std::move(that.ptr_)} {} |
| 4099 |
nothing calls this directly
no test coverage detected