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

Unified Diff: test/mjsunit/es6/super-with-spread-modify-array-iterator.js

Issue 2659623002: [turbofan] Reduce CallConstructWithSpread where iteration is not observable. (Closed)
Patch Set: respond to comments from Benedikt Created 3 years, 11 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 | « test/mjsunit/es6/super-with-spread.js ('k') | test/mjsunit/es6/super-with-spread-modify-next.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/es6/super-with-spread-modify-array-iterator.js
diff --git a/test/mjsunit/es6/super-with-spread-modify-array-iterator.js b/test/mjsunit/es6/super-with-spread-modify-array-iterator.js
new file mode 100644
index 0000000000000000000000000000000000000000..70ce9ca15915e8d2683f3a7d0c7448cafc210707
--- /dev/null
+++ b/test/mjsunit/es6/super-with-spread-modify-array-iterator.js
@@ -0,0 +1,51 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Flags: --allow-natives-syntax
+
+(function modifyArrayIterator() {
+ 'use strict';
+
+ class Point {
+ constructor(x, y) {
+ this.x = x;
+ this.y = y;
+ }
+ }
+
+ class RestPoint extends Point {
+ constructor(...args) {
+ super(...args);
+ }
+ }
+
+ function testRestPoint(x, y) {
+ return new RestPoint(x, y);
+ }
+ testRestPoint(1, 2);
+ testRestPoint(1, 2);
+ % OptimizeFunctionOnNextCall(testRestPoint);
+ var r = testRestPoint(1, 2);
+
+ assertInstanceof(r, RestPoint);
+ assertInstanceof(r, Point);
+ assertEquals(1, r.x);
+ assertEquals(2, r.y);
+
+ Object.defineProperty(Array.prototype, Symbol.iterator, {
+ value: function*
+ () {
+ yield 3;
+ yield 4;
+ },
+ configurable: true
+ });
+
+ var r2 = testRestPoint(1, 2);
+
+ assertInstanceof(r2, RestPoint);
+ assertInstanceof(r2, Point);
+ assertEquals(3, r2.x);
+ assertEquals(4, r2.y);
+})();
« no previous file with comments | « test/mjsunit/es6/super-with-spread.js ('k') | test/mjsunit/es6/super-with-spread-modify-next.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698