| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "dart:async"; | 5 import "dart:async"; |
| 6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
| 7 | 7 |
| 8 foo() async { | 8 foo() async { |
| 9 try { | 9 try { |
| 10 try { | 10 try { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 main() async { | 22 main() async { |
| 23 var error = "no error"; | 23 var error = "no error"; |
| 24 try { | 24 try { |
| 25 await foo(); | 25 await foo(); |
| 26 } catch (e) { | 26 } catch (e) { |
| 27 error = e; | 27 error = e; |
| 28 } | 28 } |
| 29 Expect.equals("error", error); | 29 Expect.equals("error", error); |
| 30 } | 30 } |
| 31 | |
| OLD | NEW |