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

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

Issue 1429653006: Remove flags for spread calls and arrays (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« no previous file with comments | « test/mjsunit/es6/spread-call.js ('k') | test/mjsunit/es6/spread-call-new-class.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-spread-calls
6
7 (function testNonConstructorStrict() { 5 (function testNonConstructorStrict() {
8 "use strict"; 6 "use strict";
9 assertThrows(function() { 7 assertThrows(function() {
10 return new Math.cos(...[1,2,3]); 8 return new Math.cos(...[1,2,3]);
11 }, TypeError); 9 }, TypeError);
12 10
13 assertThrows(function() { 11 assertThrows(function() {
14 var CallNull = null; 12 var CallNull = null;
15 return new CallNull(...[1,2,3]); 13 return new CallNull(...[1,2,3]);
16 }, TypeError); 14 }, TypeError);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 } 51 }
54 TestClass.prototype.method = function() { 52 TestClass.prototype.method = function() {
55 return this.args; 53 return this.args;
56 } 54 }
57 55
58 assertInstanceof(new TestClass(...[1, 2, 3]), TestClass); 56 assertInstanceof(new TestClass(...[1, 2, 3]), TestClass);
59 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method()); 57 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method());
60 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).args); 58 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).args);
61 assertTrue((new TestClass(...[1, 2, 3])).wasCalled); 59 assertTrue((new TestClass(...[1, 2, 3])).wasCalled);
62 })(); 60 })();
OLDNEW
« no previous file with comments | « test/mjsunit/es6/spread-call.js ('k') | test/mjsunit/es6/spread-call-new-class.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698