| 333 | } |
| 334 | |
| 335 | CollectionValue* GetCollectionSlot(int offset) { |
| 336 | DCHECK(offset != -1); // -1 offset indicates non-materialized slot |
| 337 | return reinterpret_cast<CollectionValue*>(reinterpret_cast<char*>(this) + offset); |
| 338 | } |
| 339 | |
| 340 | const CollectionValue* GetCollectionSlot(int offset) const { |
| 341 | DCHECK(offset != -1); // -1 offset indicates non-materialized slot |
no outgoing calls