OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
5 class A { | 7 class A { |
6 foo(a) { | 8 foo(a) { |
7 while (false) { | 9 while (false) { |
8 // This call will make the builder want to put [this] as a phi. | 10 // This call will make the builder want to put [this] as a phi. |
9 foo(0); | 11 foo(0); |
10 } | 12 } |
11 // This computation makes sure there will be a bailout version. | 13 // This computation makes sure there will be a bailout version. |
12 return a + 42; | 14 return a + 42; |
13 } | 15 } |
14 } | 16 } |
15 | 17 |
16 main() { | 18 main() { |
17 Expect.equals(42, new A().foo(0)); | 19 Expect.equals(42, new A().foo(0)); |
18 Expect.throws(() => new A().foo("")); | 20 Expect.throws(() => new A().foo("")); |
19 } | 21 } |
OLD | NEW |