| Index: tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| index fa3b9522893ada6cb74d44bfcc239ad54df8eb33..d1d19c9672c60d851abc280717b3a3d9c420cdbc 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| @@ -58,17 +58,15 @@ main() {
|
| function() {
|
| var i = 0;
|
| L1:
|
| - while (true) {
|
| - if (P.identical(V.foo(true), true)) {
|
| - P.print(1);
|
| - if (!P.identical(V.foo(false), true)) {
|
| - i = V.foo(i);
|
| - continue L1;
|
| - }
|
| - }
|
| - P.print(2);
|
| - return null;
|
| + while (P.identical(V.foo(true), true)) {
|
| + P.print(1);
|
| + if (!P.identical(V.foo(false), true))
|
| + i = V.foo(i);
|
| + else
|
| + break L1;
|
| }
|
| + P.print(2);
|
| + return null;
|
| }"""),
|
| const TestEntry("""
|
| foo(a) => a;
|
|
|