From: verwaest@chromium.org Date: Tue, 19 Aug 2014 07:09:41 +0000 (+0000) Subject: Get rid of dead version of GetNormalizedProperty X-Git-Tag: upstream/4.7.83~7571 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c70ca1344a2a3dc551aeeb5110c91b141cef2160;p=platform%2Fupstream%2Fv8.git Get rid of dead version of GetNormalizedProperty BUG= R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/481073002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23178 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/objects.cc b/src/objects.cc index ebdc6b7..f542480 100644 --- a/src/objects.cc +++ b/src/objects.cc @@ -630,21 +630,6 @@ Object* JSObject::GetNormalizedProperty(const LookupResult* result) { } -Handle JSObject::GetNormalizedProperty(Handle object, - const LookupResult* result) { - DCHECK(!object->HasFastProperties()); - Isolate* isolate = object->GetIsolate(); - Handle value(object->property_dictionary()->ValueAt( - result->GetDictionaryEntry()), isolate); - if (object->IsGlobalObject()) { - value = handle(Handle::cast(value)->value(), isolate); - DCHECK(!value->IsTheHole()); - } - DCHECK(!value->IsPropertyCell() && !value->IsCell()); - return value; -} - - void JSObject::SetNormalizedProperty(Handle object, Handle name, Handle value, diff --git a/src/objects.h b/src/objects.h index 9306090..a954aab 100644 --- a/src/objects.h +++ b/src/objects.h @@ -2157,8 +2157,6 @@ class JSObject: public JSReceiver { // Retrieve a value in a normalized object given a lookup result. // Handles the special representation of JS global objects. Object* GetNormalizedProperty(const LookupResult* result); - static Handle GetNormalizedProperty(Handle object, - const LookupResult* result); // Sets the property value in a normalized object given (key, value, details). // Handles the special representation of JS global objects.