| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index a5a312bd9cb16ba060e756404bbe103ce7de3f7a..ab40007f2228ae5f641a0e8589f32ceea30506f7 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4351,6 +4351,9 @@ class OrderedHashTable: public FixedArray {
|
| bool* was_present);
|
|
|
| // Returns kNotFound if the key isn't present.
|
| + int FindEntry(Handle<Object> key, int hash);
|
| +
|
| + // Like the above, but doesn't require the caller to provide a hash.
|
| int FindEntry(Handle<Object> key);
|
|
|
| int NumberOfElements() {
|
|
|