Revision: 23236
Author:   [email protected]
Date:     Wed Aug 20 14:16:28 2014 UTC
Log:      Restore CHECK_DERIVED_PROPERTY

BUG=
[email protected]

Review URL: https://codereview.chromium.org/491873002
http://code.google.com/p/v8/source/detail?r=23236

Modified:
 /branches/bleeding_edge/src/api.cc

=======================================
--- /branches/bleeding_edge/src/api.cc  Wed Aug 20 13:52:49 2014 UTC
+++ /branches/bleeding_edge/src/api.cc  Wed Aug 20 14:16:28 2014 UTC
@@ -3600,7 +3600,8 @@
   ENTER_V8(isolate);
   i::Handle<i::JSObject> self_obj = Utils::OpenHandle(this);
   i::Handle<i::String> key_obj = Utils::OpenHandle(*key);
- i::LookupIterator it(self_obj, key_obj, i::LookupIterator::CHECK_PROPERTY);
+  i::LookupIterator it(self_obj, key_obj,
+                       i::LookupIterator::CHECK_DERIVED_PROPERTY);
   return GetPropertyByLookup(&it);
 }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to