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

Unified Diff: utils/pub/utils.dart

Issue 11308212: Add an initial "pub lish" command. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes 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 | « utils/pub/pub.dart ('k') | utils/tests/pub/oauth2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/utils.dart
diff --git a/utils/pub/utils.dart b/utils/pub/utils.dart
index 40978856147a4cff7296af28aeca2a7435fdb1c4..21079f62ba86df7297c130806d064e681c68322b 100644
--- a/utils/pub/utils.dart
+++ b/utils/pub/utils.dart
@@ -134,7 +134,7 @@ Future sleep(int milliSeconds) {
/// to [completer].
void chainToCompleter(Future future, Completer completer) {
future.handleException((e) {
- completer.completeException(e);
+ completer.completeException(e, future.stackTrace);
return true;
});
future.then(completer.complete);
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/tests/pub/oauth2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698