Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1518)

Unified Diff: src/stub-cache.cc

Issue 392243002: Reimplement SetProperty using the LookupIterator (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/stub-cache.cc
diff --git a/src/stub-cache.cc b/src/stub-cache.cc
index 2a3d5c301ee9ad077967065c1cf01aede0e8eeac..a3d7b075e13114bbd1f7f9f3caad397682e6ee48 100644
--- a/src/stub-cache.cc
+++ b/src/stub-cache.cc
@@ -581,8 +581,8 @@ RUNTIME_FUNCTION(StoreInterceptorProperty) {
ASSERT(receiver->HasNamedInterceptor());
Handle<Object> result;
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
- isolate, result, JSObject::SetPropertyWithInterceptor(
- receiver, name, value, ic.strict_mode()));
+ isolate, result,
+ JSObject::SetProperty(receiver, name, value, ic.strict_mode()));
return *result;
}

Powered by Google App Engine
This is Rietveld 408576698