| 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 // Test that dart2s computes the right bailout environment in presence | 5 // Test that dart2s computes the right bailout environment in presence |
| 6 // of nested loops. | 6 // of nested loops. |
| 7 | 7 |
| 8 class A { | 8 class A { |
| 9 operator[] (index) => 42; | 9 operator[] (index) => 42; |
| 10 } | 10 } |
| 11 | 11 |
| 12 var a = new A(); | 12 var a = new A(); |
| 13 var b = new List(4); | 13 var b = new List.fixedLength(4); |
| 14 int count = 0; | 14 int count = 0; |
| 15 | 15 |
| 16 main() { | 16 main() { |
| 17 // Make the method recursive to make sure it gets an optimized | 17 // Make the method recursive to make sure it gets an optimized |
| 18 // version. | 18 // version. |
| 19 if (b[0] != null) main(); | 19 if (b[0] != null) main(); |
| 20 | 20 |
| 21 for (int i = 0; i < 2; i++) { | 21 for (int i = 0; i < 2; i++) { |
| 22 for (int j = 0; j < 2; j++) { | 22 for (int j = 0; j < 2; j++) { |
| 23 for (int k = 0; k < 2; k++) { | 23 for (int k = 0; k < 2; k++) { |
| 24 Expect.equals(42, a[i + j + k]); | 24 Expect.equals(42, a[i + j + k]); |
| 25 count++; | 25 count++; |
| 26 } | 26 } |
| 27 } | 27 } |
| 28 } | 28 } |
| 29 Expect.equals(8, count); | 29 Expect.equals(8, count); |
| 30 } | 30 } |
| OLD | NEW |