OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 // | |
5 // Flags: --ignition-generators | |
6 | 4 |
7 function* f() { yield } | 5 // See http://code.google.com/p/v8/issues/detail?id=5213 |
8 | 6 |
9 f().throw(42); | 7 assertEquals(0, Math.pow(2,-2147483648)); |
| 8 assertEquals(0, Math.pow(2,-9223372036854775808)); |
OLD | NEW |