Index: tests/language_strong/async_control_structures_test.dart |
diff --git a/tests/language_strong/async_control_structures_test.dart b/tests/language_strong/async_control_structures_test.dart |
index 23365f4af16c92f80cca3e3271e1ba6f09453620..8fcdce54043c7f5db8bb505a09cbc85ef636406d 100644 |
--- a/tests/language_strong/async_control_structures_test.dart |
+++ b/tests/language_strong/async_control_structures_test.dart |
@@ -16,7 +16,7 @@ expectThenValue(future, value) { |
} |
asyncIf(condition) async { |
- if(condition) { |
+ if (condition) { |
return 1; |
} else { |
return 2; |
@@ -53,7 +53,9 @@ asyncTryCatchLoop() async { |
try { |
throw throws; |
} catch (e) { |
- if (i == throws) { return e; } |
+ if (i == throws) { |
+ return e; |
+ } |
} finally { |
i++; |
} |
@@ -61,9 +63,7 @@ asyncTryCatchLoop() async { |
} |
asyncImplicitReturn() async { |
- try {} |
- catch (e) {} |
- finally {} |
+ try {} catch (e) {} finally {} |
} |
main() { |