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