| 4092 | bool Value::isArray() const { return type() == arrayValue; } |
| 4093 | |
| 4094 | bool Value::isObject() const { return type() == objectValue; } |
| 4095 | |
| 4096 | Value::Comments::Comments(const Comments &that) : ptr_{cloneUnique(that.ptr_)} {} |
| 4097 |
no test coverage detected