Chromium Code Reviews| Index: sdk/lib/async/stream_controller.dart |
| diff --git a/sdk/lib/async/stream_controller.dart b/sdk/lib/async/stream_controller.dart |
| index 194602eb529352faa5e4281585a809d45b3fab79..42ff1eb372d04d521d40fe8bc14456e6437c1476 100644 |
| --- a/sdk/lib/async/stream_controller.dart |
| +++ b/sdk/lib/async/stream_controller.dart |
| @@ -579,7 +579,7 @@ void _runGuarded(_NotificationHandler notificationHandler) { |
| try { |
| notificationHandler(); |
| } catch (e, s) { |
| - _Zone.current.handleUncaughtError(_asyncError(e, s)); |
| + Zone.current.handleUncaughtError(_asyncError(e, s)); |
|
Lasse Reichstein Nielsen
2013/09/23 14:24:12
For unhandled errors, I wouldn't mind having an Un
floitsch
2013/09/23 17:12:07
Let's discuss this in person tomorrow.
|
| } |
| } |