| 3813 | bool Value::isObject() const { return type() == objectValue; } |
| 3814 | |
| 3815 | Value::Comments::Comments(const Comments& that) |
| 3816 | : ptr_{cloneUnique(that.ptr_)} {} |
| 3817 | |
| 3818 | Value::Comments::Comments(Comments&& that) noexcept |
| 3819 | : ptr_{std::move(that.ptr_)} {} |
nothing calls this directly
no test coverage detected