| 197 | |
| 198 | Value::Value(const Value & other) |
| 199 | : kind_(other.kind_), |
| 200 | bool_value_(other.bool_value_), |
| 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_); |
no outgoing calls
no test coverage detected