| 213 | return *this; |
| 214 | } |
| 215 | kind_ = other.kind_; |
| 216 | bool_value_ = other.bool_value_; |
| 217 | number_value_ = other.number_value_; |
| 218 | string_value_ = other.string_value_; |
| 219 | array_value_ = other.array_value_ ? std::make_unique<Array>(*other.array_value_) : nullptr; |
| 220 | object_value_ = other.object_value_ ? std::make_unique<Object>(*other.object_value_) : nullptr; |
no outgoing calls
no test coverage detected