| 3404 | } |
| 3405 | |
| 3406 | void Value::initBasic(ValueType type, bool allocated) { |
| 3407 | setType(type); |
| 3408 | setIsAllocated(allocated); |
| 3409 | comments_ = Comments{}; |
| 3410 | start_ = 0; |
| 3411 | limit_ = 0; |
| 3412 | } |
| 3413 | |
| 3414 | void Value::dupPayload(const Value& other) { |
| 3415 | setType(other.type()); |
nothing calls this directly
no test coverage detected