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

Unified Diff: utils/pub/curl_client.dart

Issue 11421159: Give all async exceptions in pub some sort of stack trace. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « no previous file | utils/pub/io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/curl_client.dart
diff --git a/utils/pub/curl_client.dart b/utils/pub/curl_client.dart
index 20a1027d48bf0eb431b476dbc8f4d2ab0d44ef53..48bc756b0fa330482d32a9c16434b1737070f7b7 100644
--- a/utils/pub/curl_client.dart
+++ b/utils/pub/curl_client.dart
@@ -135,6 +135,14 @@ class CurlClient extends http.BaseClient {
]);
}
+ // TODO(nweiz): remove this when issue 4061 is fixed.
+ var stackTrace;
+ try {
+ throw null;
Bob Nystrom 2012/11/29 22:25:40 Throwing null is forbidden and causes a different
nweiz 2012/11/29 22:39:02 Done.
+ } catch (_, localStackTrace) {
+ stackTrace = localStackTrace;
+ }
+
var completer = new Completer();
resetCallbacks() {
process.stdout.onData = null;
@@ -151,7 +159,7 @@ class CurlClient extends http.BaseClient {
};
process.stdout.onError = (e) {
resetCallbacks();
- completer.completeException(e);
+ completer.completeException(e, stackTrace);
};
process.stdout.onClosed = () {
resetCallbacks();
« no previous file with comments | « no previous file | utils/pub/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698