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

Unified Diff: test/mjsunit/runtime-gen/defineproperty.js

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
Index: test/mjsunit/runtime-gen/defineproperty.js
diff --git a/test/mjsunit/runtime-gen/setproperty.js b/test/mjsunit/runtime-gen/defineproperty.js
similarity index 73%
copy from test/mjsunit/runtime-gen/setproperty.js
copy to test/mjsunit/runtime-gen/defineproperty.js
index bec3ad8575e6102027507734f2520c1fc868a35a..080b47d02d87c46a392d4b9b6d6c5a9802c68e2a 100644
--- a/test/mjsunit/runtime-gen/setproperty.js
+++ b/test/mjsunit/runtime-gen/defineproperty.js
@@ -5,5 +5,4 @@ var _object = new Object();
var _key = new Object();
var _value = new Object();
var _unchecked_attributes = 1;
-var _strict_mode_arg = 1;
-%SetProperty(_object, _key, _value, _unchecked_attributes, _strict_mode_arg);
+%DefineProperty(_object, _key, _value, _unchecked_attributes);

Powered by Google App Engine
This is Rietveld 408576698