| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index d4a1f702b96910bf3580f076ce5519b65b512c46..a4d9a871fc9aa2f446d85c95038de9865f49a8fe 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4018,7 +4018,7 @@ class Dictionary: public HashTable<Shape, Key> {
|
| }
|
|
|
| int NextEnumerationIndex() {
|
| - return Smi::cast(FixedArray::get(kNextEnumerationIndexIndex))->value();
|
| + return Smi::cast(this->get(kNextEnumerationIndexIndex))->value();
|
| }
|
|
|
| // Returns a new array for dictionary usage. Might return Failure.
|
|
|