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

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

Issue 26933003: Make pub build use barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reword doc comment. 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
Index: pkg/barback/lib/src/asset_cascade.dart
diff --git a/pkg/barback/lib/src/asset_cascade.dart b/pkg/barback/lib/src/asset_cascade.dart
index 9eec80041c467d9fec3eb872676b90fb399c150f..9857c8061eeb30bea6f74d45cacc2d5af81a7fe3 100644
--- a/pkg/barback/lib/src/asset_cascade.dart
+++ b/pkg/barback/lib/src/asset_cascade.dart
@@ -121,7 +121,10 @@ class AssetCascade {
// Keep track of logged errors so we can know that the build failed.
onLog.listen((entry) {
- if (entry.level == LogLevel.ERROR) _numLogErrors++;
+ if (entry.level == LogLevel.ERROR) {
+ _accumulatedErrors.add(
+ new TransformerException(entry.transform, entry.message));
+ }
});
}
@@ -261,7 +264,7 @@ class AssetCascade {
// Report the build completion.
// TODO(rnystrom): Put some useful data in here.
_resultsController.add(
- new BuildResult(_accumulatedErrors, _numLogErrors));
+ new BuildResult(_accumulatedErrors));
}).catchError((error) {
// If we get here, it's an unexpected error. Runtime errors like missing
// assets should be handled earlier. Errors from transformers or other
« no previous file with comments | « no previous file | pkg/barback/lib/src/build_result.dart » ('j') | sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698