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

Unified Diff: src/ic.cc

Issue 351853005: Split SetProperty(...attributes, strictmode) into AddProperty(...attributes) and SetProperty(...… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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
« no previous file with comments | « src/ia32/ic-ia32.cc ('k') | src/math.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic.cc
diff --git a/src/ic.cc b/src/ic.cc
index dff2a1d6a84fee0af8f23c4f0b935ea5372334a7..b4ef2b839275fd807c1d919bb9c2efc27941bcf1 100644
--- a/src/ic.cc
+++ b/src/ic.cc
@@ -1743,7 +1743,7 @@ MaybeHandle<Object> KeyedStoreIC::Store(Handle<Object> object,
isolate(),
result,
Runtime::SetObjectProperty(
- isolate(), object, key, value, NONE, strict_mode()),
+ isolate(), object, key, value, strict_mode()),
Object);
return result;
}
@@ -1811,7 +1811,7 @@ MaybeHandle<Object> KeyedStoreIC::Store(Handle<Object> object,
isolate(),
store_handle,
Runtime::SetObjectProperty(
- isolate(), object, key, value, NONE, strict_mode()),
+ isolate(), object, key, value, strict_mode()),
Object);
}
@@ -2143,7 +2143,7 @@ RUNTIME_FUNCTION(StoreIC_Slow) {
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, result,
Runtime::SetObjectProperty(
- isolate, object, key, value, NONE, strict_mode));
+ isolate, object, key, value, strict_mode));
return *result;
}
@@ -2160,7 +2160,7 @@ RUNTIME_FUNCTION(KeyedStoreIC_Slow) {
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, result,
Runtime::SetObjectProperty(
- isolate, object, key, value, NONE, strict_mode));
+ isolate, object, key, value, strict_mode));
return *result;
}
@@ -2184,7 +2184,7 @@ RUNTIME_FUNCTION(ElementsTransitionAndStoreIC_Miss) {
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, result,
Runtime::SetObjectProperty(
- isolate, object, key, value, NONE, strict_mode));
+ isolate, object, key, value, strict_mode));
return *result;
}
« no previous file with comments | « src/ia32/ic-ia32.cc ('k') | src/math.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698