| 3811 | bool Value::isArray() const { return type() == arrayValue; } |
| 3812 | |
| 3813 | bool Value::isObject() const { return type() == objectValue; } |
| 3814 | |
| 3815 | Value::Comments::Comments(const Comments& that) |
| 3816 | : ptr_{cloneUnique(that.ptr_)} {} |
no test coverage detected