| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index 0cad08337f66c3962645498119c0015510c049ee..afd6770db879c89f1f5bfde3d8b4c4a6bf083602 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -2726,6 +2726,9 @@ class StoreElementStub : public PlatformCodeStub {
|
| StoreElementStub(Isolate* isolate, ElementsKind elements_kind,
|
| KeyedAccessStoreMode mode)
|
| : PlatformCodeStub(isolate) {
|
| + // TODO(jkummerow): Rename this stub to StoreSlowElementStub,
|
| + // drop elements_kind parameter.
|
| + DCHECK_EQ(DICTIONARY_ELEMENTS, elements_kind);
|
| minor_key_ = ElementsKindBits::encode(elements_kind) |
|
| CommonStoreModeBits::encode(mode);
|
| }
|
|
|