| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 192e342d9b85f442f5ed879d8aef5a88eeaf84ba..0aa396e96d11ba9cca341a0d5a20dd3f049417ff 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -100,10 +100,10 @@ namespace internal {
|
| F(GetWeakMapEntries, 2, 1) \
|
| F(MapIteratorNext, 2, 1) \
|
| F(WeakCollectionInitialize, 1, 1) \
|
| - F(WeakCollectionGet, 2, 1) \
|
| - F(WeakCollectionHas, 2, 1) \
|
| - F(WeakCollectionDelete, 2, 1) \
|
| - F(WeakCollectionSet, 3, 1) \
|
| + F(WeakCollectionGet, 3, 1) \
|
| + F(WeakCollectionHas, 3, 1) \
|
| + F(WeakCollectionDelete, 3, 1) \
|
| + F(WeakCollectionSet, 4, 1) \
|
| F(GetWeakSetValues, 2, 1) \
|
| F(ObservationWeakMapCreate, 0, 1)
|
|
|
| @@ -854,9 +854,12 @@ class Runtime : public AllStatic {
|
| static void WeakCollectionInitialize(
|
| Isolate* isolate, Handle<JSWeakCollection> weak_collection);
|
| static void WeakCollectionSet(Handle<JSWeakCollection> weak_collection,
|
| - Handle<Object> key, Handle<Object> value);
|
| + Handle<Object> key, Handle<Object> value,
|
| + int32_t hash);
|
| static bool WeakCollectionDelete(Handle<JSWeakCollection> weak_collection,
|
| Handle<Object> key);
|
| + static bool WeakCollectionDelete(Handle<JSWeakCollection> weak_collection,
|
| + Handle<Object> key, int32_t hash);
|
|
|
| static MaybeHandle<JSArray> GetInternalProperties(Isolate* isolate,
|
| Handle<Object>);
|
|
|