| 3804 | bool Value::isObject() const { return type() == objectValue; } |
| 3805 | |
| 3806 | Value::Comments::Comments(const Comments &that) |
| 3807 | : ptr_{cloneUnique(that.ptr_)} {} |
| 3808 | |
| 3809 | Value::Comments::Comments(Comments &&that) : ptr_{std::move(that.ptr_)} {} |
| 3810 |
nothing calls this directly
no test coverage detected