| 1375 | bool Value::isObject() const { return type() == objectValue; } |
| 1376 | |
| 1377 | Value::Comments::Comments(const Comments& that) |
| 1378 | : ptr_{cloneUnique(that.ptr_)} {} |
| 1379 | |
| 1380 | Value::Comments::Comments(Comments&& that) noexcept |
| 1381 | : ptr_{std::move(that.ptr_)} {} |
nothing calls this directly
no test coverage detected