From: verwaest@chromium.org Date: Fri, 27 Jun 2014 15:34:18 +0000 (+0000) Subject: Cannot check the interceptor since it may not be ready yet. X-Git-Tag: upstream/4.7.83~8494 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f231396597fa62a04574248fe25c94b45786500;p=platform%2Fupstream%2Fv8.git Cannot check the interceptor since it may not be ready yet. BUG= R=ishell@chromium.org Review URL: https://codereview.chromium.org/353143003 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22067 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/runtime.cc b/src/runtime.cc index 229e21a..31d91be 100644 --- a/src/runtime.cc +++ b/src/runtime.cc @@ -5337,7 +5337,7 @@ RUNTIME_FUNCTION(Runtime_AddProperty) { #ifdef DEBUG if (key->IsName()) { LookupIterator it(object, Handle::cast(key), - LookupIterator::CHECK_OWN); + LookupIterator::CHECK_OWN_REAL); JSReceiver::GetPropertyAttributes(&it); RUNTIME_ASSERT(!it.IsFound()); } else {