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

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

Issue 1371963002: [es6] Ship rest parameters. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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 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 // Flags: --harmony-spreadcalls 5 // Flags: --harmony-spread-calls
6 6
7 (function testNonConstructorStrict() { 7 (function testNonConstructorStrict() {
8 "use strict"; 8 "use strict";
9 assertThrows(function() { 9 assertThrows(function() {
10 return new Math.cos(...[1,2,3]); 10 return new Math.cos(...[1,2,3]);
11 }, TypeError); 11 }, TypeError);
12 12
13 assertThrows(function() { 13 assertThrows(function() {
14 var CallNull = null; 14 var CallNull = null;
15 return new CallNull(...[1,2,3]); 15 return new CallNull(...[1,2,3]);
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 } 53 }
54 TestClass.prototype.method = function() { 54 TestClass.prototype.method = function() {
55 return this.args; 55 return this.args;
56 } 56 }
57 57
58 assertInstanceof(new TestClass(...[1, 2, 3]), TestClass); 58 assertInstanceof(new TestClass(...[1, 2, 3]), TestClass);
59 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method()); 59 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method());
60 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).args); 60 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).args);
61 assertTrue((new TestClass(...[1, 2, 3])).wasCalled); 61 assertTrue((new TestClass(...[1, 2, 3])).wasCalled);
62 })(); 62 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698