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

Unified Diff: pkg/barback/lib/src/package_graph.dart

Issue 101523003: Add chain support to barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 7 years 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
Index: pkg/barback/lib/src/package_graph.dart
diff --git a/pkg/barback/lib/src/package_graph.dart b/pkg/barback/lib/src/package_graph.dart
index 95ecbb1546dc91107157fed512d9cc0d979f18d1..2ecf6b4fc9793a16eeda7c590f9067445ca4a03c 100644
--- a/pkg/barback/lib/src/package_graph.dart
+++ b/pkg/barback/lib/src/package_graph.dart
@@ -66,6 +66,9 @@ class PackageGraph {
/// [Future] returned by [getAllAssets].
var _lastUnexpectedError;
+ /// The stack trace for [_lastUnexpectedError].
+ StackTrace _lastUnexpectedErrorTrace;
+
// TODO(nweiz): Allow transformers to declare themselves as "lightweight" or
// "heavyweight" and adjust their restrictions appropriately. Simple
// transformers may be very efficient to run in parallel, whereas dart2js uses
@@ -114,8 +117,9 @@ class PackageGraph {
// errors, the result will automatically be considered a success.
_resultsController.add(
new BuildResult.aggregate(_cascadeResults.values));
- }, onError: (error, [stackTrace]) {
+ }, onError: (error, stackTrace) {
_lastUnexpectedError = error;
+ _lastUnexpectedErrorTrace = stackTrace;
_resultsController.addError(error, stackTrace);
});
}
@@ -152,7 +156,7 @@ class PackageGraph {
if (_lastUnexpectedError != null) {
var error = _lastUnexpectedError;
_lastUnexpectedError = null;
- return new Future.error(error);
+ return new Future.error(error, _lastUnexpectedErrorTrace);
}
// If the build completed with an error, complete the future with it.

Powered by Google App Engine
This is Rietveld 408576698