Index: tests/language_strong/try_catch_optimized2_test.dart |
diff --git a/tests/language_strong/try_catch_optimized2_test.dart b/tests/language_strong/try_catch_optimized2_test.dart |
index aa7a9f3f2fa225e674a28bfd23ade29c5852b59c..195aeb5be41c501027b6a9e231cde7cf918c416c 100644 |
--- a/tests/language_strong/try_catch_optimized2_test.dart |
+++ b/tests/language_strong/try_catch_optimized2_test.dart |
@@ -7,9 +7,9 @@ import "package:expect/expect.dart"; |
// Test allocation sinking with optimized try-catch. |
-bar() { // Should not be inlined. |
- try { |
- } finally { } |
+bar() { |
+ // Should not be inlined. |
+ try {} finally {} |
} |
foo(a) { |
@@ -19,13 +19,12 @@ foo(a) { |
} |
try { |
bar(); |
- } finally { |
- } |
+ } finally {} |
return r; |
} |
main() { |
- var a = [1,2,3]; |
+ var a = [1, 2, 3]; |
for (var i = 0; i < 20; i++) foo(a); |
Expect.equals(6, foo(a)); |
} |