OLD | NEW |
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 Loading... |
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 })(); |
OLD | NEW |