| 966 | } |
| 967 | |
| 968 | void Value::initBasic(ValueType type, bool allocated) { |
| 969 | setType(type); |
| 970 | setIsAllocated(allocated); |
| 971 | comments_ = Comments{}; |
| 972 | start_ = 0; |
| 973 | limit_ = 0; |
| 974 | } |
| 975 | |
| 976 | void Value::dupPayload(const Value& other) { |
| 977 | setType(other.type()); |
nothing calls this directly
no test coverage detected