| 322 | } |
| 323 | |
| 324 | StringValue* GetStringSlot(int offset) { |
| 325 | DCHECK(offset != -1); // -1 offset indicates non-materialized slot |
| 326 | return reinterpret_cast<StringValue*>(reinterpret_cast<char*>(this) + offset); |
| 327 | } |
| 328 | |
| 329 | const StringValue* GetStringSlot(int offset) const { |
| 330 | DCHECK(offset != -1); // -1 offset indicates non-materialized slot |
no outgoing calls