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"; | 5 import "package:expect/expect.dart"; |
6 | 6 |
7 // Test that dart2s computes the right bailout environment in presence | 7 // Test that dart2s computes the right bailout environment in presence |
8 // of nested loops. | 8 // of nested loops. |
9 | 9 |
10 class A { | 10 class A { |
(...skipping 12 matching lines...) Expand all Loading... |
23 for (int i = 0; i < 2; i++) { | 23 for (int i = 0; i < 2; i++) { |
24 for (int j = 0; j < 2; j++) { | 24 for (int j = 0; j < 2; j++) { |
25 for (int k = 0; k < 2; k++) { | 25 for (int k = 0; k < 2; k++) { |
26 Expect.equals(42, a[i + j + k]); | 26 Expect.equals(42, a[i + j + k]); |
27 count++; | 27 count++; |
28 } | 28 } |
29 } | 29 } |
30 } | 30 } |
31 Expect.equals(8, count); | 31 Expect.equals(8, count); |
32 } | 32 } |
OLD | NEW |