| Index: tests/language/rewrite_if_swap_test.dart
|
| diff --git a/tests/language/rewrite_if_swap_test.dart b/tests/language/rewrite_if_swap_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0b515bf952e34a479a3a38611c2d93037ff6df2f
|
| --- /dev/null
|
| +++ b/tests/language/rewrite_if_swap_test.dart
|
| @@ -0,0 +1,33 @@
|
| +// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +import "package:expect/expect.dart";
|
| +
|
| +var global = 0;
|
| +
|
| +bar() {
|
| + global += 1;
|
| +}
|
| +baz() {
|
| + global += 100;
|
| +}
|
| +
|
| +foo(b) {
|
| + var old_backend_was_used;
|
| + if (b ? false : true) {
|
| + bar();
|
| + bar();
|
| + } else {
|
| + baz();
|
| + baz();
|
| + }
|
| +}
|
| +
|
| +main() {
|
| + foo(true);
|
| + Expect.equals(200, global);
|
| +
|
| + foo(false);
|
| + Expect.equals(202, global);
|
| +}
|
|
|