| 201 | number_value_(other.number_value_), |
| 202 | string_value_(other.string_value_) { |
| 203 | if (other.array_value_) { |
| 204 | array_value_ = std::make_unique<Array>(*other.array_value_); |
| 205 | } |
| 206 | if (other.object_value_) { |
| 207 | object_value_ = std::make_unique<Object>(*other.object_value_); |
| 208 | } |
no outgoing calls
no test coverage detected