 Chromium Code Reviews
 Chromium Code Reviews Issue 2751423005:
  Run dartfmt on all files under runtime.  (Closed)
    
  
    Issue 2751423005:
  Run dartfmt on all files under runtime.  (Closed) 
  | 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); | 
| } |