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

Unified Diff: runtime/observatory/tests/service/next_through_catch_test.dart

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. Created 3 years, 9 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: runtime/observatory/tests/service/next_through_catch_test.dart
diff --git a/runtime/observatory/tests/service/next_through_catch_test.dart b/runtime/observatory/tests/service/next_through_catch_test.dart
index 0b0e92488ce43753016d7aeaa359a09034815bc1..b38bc4f31cf91871939fb2c8bdddb6944782b85c 100644
--- a/runtime/observatory/tests/service/next_through_catch_test.dart
+++ b/runtime/observatory/tests/service/next_through_catch_test.dart
@@ -12,13 +12,13 @@ code() {
try {
var value = "world";
throw "Hello, $value";
- } catch(e, st) {
+ } catch (e, st) {
print(e);
print(st);
}
try {
throw "Hello, world";
- } catch(e, st) {
+ } catch (e, st) {
print(e);
print(st);
}

Powered by Google App Engine
This is Rietveld 408576698