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

Unified Diff: tests/language/execute_finally4_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/execute_finally4_test.dart
diff --git a/tests/language/execute_finally4_test.dart b/tests/language/execute_finally4_test.dart
index ab0d0230f3f8cec20ba9e197af1806e49e978b36..fcc308cf30f83cca15c7893c3edaab9b443edada 100644
--- a/tests/language/execute_finally4_test.dart
+++ b/tests/language/execute_finally4_test.dart
@@ -6,9 +6,8 @@
import "package:expect/expect.dart";
-
class Helper {
- Helper() : i = 0 { }
+ Helper() : i = 0 {}
int f1() {
try {
@@ -18,12 +17,12 @@ class Helper {
} finally {
i = i + 10;
}
- return i + 200; // Should return here with i = 211.
+ return i + 200; // Should return here with i = 211.
try {
int j;
j = func();
} finally {
- i = i + 10; // Should not get executed as part of return above.
+ i = i + 10; // Should not get executed as part of return above.
}
}

Powered by Google App Engine
This is Rietveld 408576698