Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index b16c6855974a59660f07d854677a0fc7a7485beb..c647abd57f3a2c78a04ccce48eec7bd67c5710e0 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -967,23 +967,6 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_IsInPrototypeChain) { |
} |
-// Recursively traverses hidden prototypes if property is not found |
-static void GetOwnPropertyImplementation(JSObject* obj, |
- String* name, |
- LookupResult* result) { |
- obj->LocalLookupRealNamedProperty(name, result); |
- |
- if (result->IsFound()) return; |
- |
- Object* proto = obj->GetPrototype(); |
- if (proto->IsJSObject() && |
- JSObject::cast(proto)->map()->is_hidden_prototype()) { |
- GetOwnPropertyImplementation(JSObject::cast(proto), |
- name, result); |
- } |
-} |
- |
- |
static bool CheckAccessException(Object* callback, |
v8::AccessType access_type) { |
if (callback->IsAccessorInfo()) { |