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

Unified Diff: sdk/lib/async/stream_impl.dart

Issue 25027004: Add second argument to Future error handlers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 2 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
« no previous file with comments | « sdk/lib/async/stream_controller.dart ('k') | sdk/lib/async/zone.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/async/stream_impl.dart
diff --git a/sdk/lib/async/stream_impl.dart b/sdk/lib/async/stream_impl.dart
index ee390cfc7f1bb8acd59e58c9f1bf911dba02624a..69aaf37d652024e7a97eca9c80ac361d12320162 100644
--- a/sdk/lib/async/stream_impl.dart
+++ b/sdk/lib/async/stream_impl.dart
@@ -336,7 +336,7 @@ class _BufferingStreamSubscription<T> implements StreamSubscription<T>,
_state |= _STATE_IN_CALLBACK;
if (!_zone.inSameErrorZone(Zone.current)) {
// Errors are not allowed to traverse zone boundaries.
- Zone.current.handleUncaughtError(error);
+ Zone.current.handleUncaughtError(error, getAttachedStackTrace(error));
} else {
_zone.runUnaryGuarded(_onError, error);
}
@@ -531,9 +531,9 @@ typedef void _DoneHandler();
/** Default data handler, does nothing. */
void _nullDataHandler(var value) {}
-/** Default error handler, reports the error to the global handler. */
+/** Default error handler, reports the error to the current zone's handler. */
void _nullErrorHandler(error) {
- Zone.current.handleUncaughtError(error);
+ Zone.current.handleUncaughtError(error, getAttachedStackTrace(error));
}
/** Default done handler, does nothing. */
« no previous file with comments | « sdk/lib/async/stream_controller.dart ('k') | sdk/lib/async/zone.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698