Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Unified Diff: tests/language/rewrite_if_return_test.dart

Issue 288343014: dart2dart: Test cases for better code coverage in dart_tree rewritings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language/rewrite_if_return_test.dart
diff --git a/tests/language/rewrite_if_return_test.dart b/tests/language/rewrite_if_return_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ae282360af94d2b3f70e09b6a1c0801e777d3f8f
--- /dev/null
+++ b/tests/language/rewrite_if_return_test.dart
@@ -0,0 +1,47 @@
+// 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 = 2;
+}
+
+return_const(b) {
+ if (b) {
+ bar();
+ return 1;
+ } else {
+ baz();
+ return 1;
+ }
+}
+
+return_var(b, x) {
+ if (b) {
+ bar();
+ return x;
+ } else {
+ baz();
+ return x;
+ }
+}
+
+main() {
+ return_const(true);
+ Expect.equals(1, global);
+ return_const(false);
+ Expect.equals(2, global);
+
+ Expect.equals(4, return_var(true, 4));
+ Expect.equals(1, global);
+ Expect.equals(5, return_var(false, 5));
+ Expect.equals(2, global);
+}

Powered by Google App Engine
This is Rietveld 408576698