| 3802 | bool Value::isArray() const { return type() == arrayValue; } |
| 3803 | |
| 3804 | bool Value::isObject() const { return type() == objectValue; } |
| 3805 | |
| 3806 | Value::Comments::Comments(const Comments &that) |
| 3807 | : ptr_{cloneUnique(that.ptr_)} {} |
no outgoing calls
no test coverage detected