| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 92d5ab5a2a346622a2368643e9da8faa0b11a34b..927782d30a10348a59f84fa04126b10d3ec4a4a0 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -2154,10 +2154,6 @@ class JSObject: public JSReceiver {
|
| // or returns false if such a map is not yet available.
|
| static bool TryMigrateInstance(Handle<JSObject> instance);
|
|
|
| - // Retrieve a value in a normalized object given a lookup result.
|
| - // Handles the special representation of JS global objects.
|
| - Object* GetNormalizedProperty(const LookupResult* result);
|
| -
|
| // Sets the property value in a normalized object given (key, value, details).
|
| // Handles the special representation of JS global objects.
|
| static void SetNormalizedProperty(Handle<JSObject> object,
|
| @@ -2480,6 +2476,7 @@ class JSObject: public JSReceiver {
|
|
|
| static Handle<Object> GetDataProperty(Handle<JSObject> object,
|
| Handle<Name> key);
|
| + static Handle<Object> GetDataProperty(LookupIterator* it);
|
|
|
| DECLARE_CAST(JSObject)
|
|
|
|
|