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

Unified Diff: src/array-iterator.js

Issue 342453002: Arguments object has @@iterator (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 | « no previous file | src/bootstrapper.cc » ('j') | test/mjsunit/harmony/arguments-iterator.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/array-iterator.js
diff --git a/src/array-iterator.js b/src/array-iterator.js
index 9511b6d95a483c6f56395dd5701a0325c530477d..5508e950434064a515a60ec8068badb7bd1fe910 100644
--- a/src/array-iterator.js
+++ b/src/array-iterator.js
@@ -126,3 +126,34 @@ function ExtendArrayPrototype() {
));
}
ExtendArrayPrototype();
+
+
+function ArgumentsIteratorGetter() {
+ return ArrayValues;
+}
+
+
+function ArgumentsIteratorSetter(val) {
+ ObjectDefineProperty(this, symbolIterator, {
+ value: val,
+ writable: true,
+ enumerable: false,
+ configurable: true
+ });
+}
+
+
+function ExtendArgumentsBoilerplateObjects() {
+ %CheckIsBootstrapping();
+
+ for (var i = 0; i < 3; i++) {
+ var boilerplate = %GetArgumentsBoilerplateObject(i);
+ ObjectDefineProperty(boilerplate, symbolIterator, {
+ get: ArgumentsIteratorGetter,
arv (Not doing code reviews) 2014/06/25 15:55:05 It is not clear to me why this cannot be a data pr
+ set: ArgumentsIteratorSetter,
+ enumerable: false,
+ configurable: true
+ });
+ }
+}
+ExtendArgumentsBoilerplateObjects();
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | test/mjsunit/harmony/arguments-iterator.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698