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

Side by Side Diff: test/mjsunit/es6/spread-call.js

Issue 2465253011: Fastpath some spread-call desugaring. (Closed)
Patch Set: Use functions for testing initial_* objects Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 (function testSpreadCallsStrict() { 5 (function testSpreadCallsStrict() {
6 "use strict" 6 "use strict"
7 function countArgs() { return arguments.length; } 7 function countArgs() { return arguments.length; }
8 8
9 // Test this argument 9 // Test this argument
10 function returnThis() { return this; } 10 function returnThis() { return this; }
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 result = fn(a(), ...b(), ...c(), d(), e()); 339 result = fn(a(), ...b(), ...c(), d(), e());
340 assertEquals([undefined, 0, 1, undefined, undefined], result); 340 assertEquals([undefined, 0, 1, undefined, undefined], result);
341 assertEquals("ABXYC1C2DE", log); 341 assertEquals("ABXYC1C2DE", log);
342 342
343 log = ""; 343 log = "";
344 result = fn(a(), ...b(), ...c(), d(), e(), ...b(), ...c()); 344 result = fn(a(), ...b(), ...c(), d(), e(), ...b(), ...c());
345 assertEquals([undefined, 0, 1, undefined, undefined, 0, 1], result); 345 assertEquals([undefined, 0, 1, undefined, undefined, 0, 1], result);
346 assertEquals("ABXYC1C2DEBXYC1C2", log); 346 assertEquals("ABXYC1C2DEBXYC1C2", log);
347 })(); 347 })();
348 348
349 (function testArrayHasOtherPrototype() {
350 function countArgs() { return arguments.length; }
351 var a = [1, 2, 3];
352 var b = {};
353 Object.defineProperty(b, Symbol.iterator, {
354 value: function*() {
355 yield 4;
356 },
357 configurable: true
358 });
359
360 Object.setPrototypeOf(a, b);
361
362 assertEquals(1, countArgs(...a));
363 })();
364
365 (function testArrayIteratorPrototypeGetter() {
366 function countArgs() { return arguments.length; }
367 var a = [1, 2, 3];
368 var ai = a[Symbol.iterator]();
369 var called = 0;
370
371 var original_next = ai.__proto__["next"];
372
373 Object.defineProperty(ai.__proto__, "next", {
374 get: function() {
375 called++;
376 return original_next;
377 }
378 });
379
380 countArgs(...a);
381
382 // should be called 4 times; 3 for the values, 1 for the final
383 // {value: undefined, done: true} pair
384 assertEquals(4, called);
385 })();
386
387 (function testArrayIteratorPrototypeModified() {
388 function countArgs() { return arguments.length; }
389 var a = [1,2,3];
390 var ai = a[Symbol.iterator]();
391 Object.defineProperty(ai.__proto__, "next", {
392 value: function() {
393 return {value: undefined, done: true};
394 },
395 configurable: true
396 });
397
398 assertEquals(0, countArgs(...a));
399
400 })();
349 401
350 (function testCustomArrayPrototypeIterator() { 402 (function testCustomArrayPrototypeIterator() {
351 var origIterator = 403 var origIterator =
352 Object.getOwnPropertyDescriptor(Array.prototype, Symbol.iterator); 404 Object.getOwnPropertyDescriptor(Array.prototype, Symbol.iterator);
353 Object.defineProperty(Array.prototype, Symbol.iterator, { 405 Object.defineProperty(Array.prototype, Symbol.iterator, {
354 value: function*() { 406 value: function*() {
355 yield 1; 407 yield 1;
356 yield 2; 408 yield 2;
357 yield 3; 409 yield 3;
358 }, 410 },
359 configurable: true 411 configurable: true
360 }); 412 });
361 function returnCountStrict() { 'use strict'; return arguments.length; } 413 function returnCountStrict() { 'use strict'; return arguments.length; }
362 function returnCountSloppy() { return arguments.length; } 414 function returnCountSloppy() { return arguments.length; }
363 415
364 assertEquals(3, returnCountStrict(...[1])); 416 assertEquals(3, returnCountStrict(...[1]));
365 assertEquals(4, returnCountStrict(1, ...[2])); 417 assertEquals(4, returnCountStrict(1, ...[2]));
366 assertEquals(5, returnCountStrict(1, ...[2], 3)); 418 assertEquals(5, returnCountStrict(1, ...[2], 3));
367 assertEquals(3, returnCountSloppy(...[1])); 419 assertEquals(3, returnCountSloppy(...[1]));
368 assertEquals(4, returnCountSloppy(1, ...[2])); 420 assertEquals(4, returnCountSloppy(1, ...[2]));
369 assertEquals(5, returnCountSloppy(1, ...[2], 3)); 421 assertEquals(5, returnCountSloppy(1, ...[2], 3));
370 422
371 Object.defineProperty(Array.prototype, Symbol.iterator, origIterator); 423 Object.defineProperty(Array.prototype, Symbol.iterator, origIterator);
372 })(); 424 })();
425
426 (function testGetPropertyIteratorCalledExactlyOnce() {
427 function countArgs() { return arguments.length; }
428 var a = [1, 2, 3];
429 var called = 0;
430
431 Object.defineProperty(Array.prototype, Symbol.iterator, {
432 value: function*() {
433 yield 1;
434 yield 2;
435 },
436 configurable: true
437 });
438
439 var it = a[Symbol.iterator];
440 Object.defineProperty(a, Symbol.iterator, {
441 get: function() {
442 called++;
443 return it;
444 }
445 });
446
447 countArgs(...a);
448
449 assertEquals(1, called);
450 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698