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

Unified Diff: pkg/barback/lib/src/build_result.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/build_result.dart
diff --git a/pkg/barback/lib/src/build_result.dart b/pkg/barback/lib/src/build_result.dart
index 0e2b6cdd600cac4206f60de017ebcf9f79fc2d9a..00c702c0d549b64920c7a8adbe71291e998e573b 100644
--- a/pkg/barback/lib/src/build_result.dart
+++ b/pkg/barback/lib/src/build_result.dart
@@ -25,23 +25,24 @@ class BuildResult {
/// All errors that were thrown during the build.
final Set<BarbackException> errors;
- /// The number of error log entries that occurred during this build.
- final int _numErrorLogs;
-
/// `true` if the build succeeded.
- bool get succeeded => errors.isEmpty && _numErrorLogs == 0;
-
- /// Gets the number of error exceptions and log entries.
- int get numErrors => errors.length + _numErrorLogs;
+ bool get succeeded => errors.isEmpty;
- BuildResult(Iterable<BarbackException> errors, this._numErrorLogs)
+ BuildResult(Iterable<BarbackException> errors)
: errors = flattenAggregateExceptions(errors).toSet();
/// Creates a build result indicating a successful build.
///
/// This equivalent to a build result with no errors.
BuildResult.success()
- : this([], 0);
+ : this([]);
+
+ /// Creates a single [BuildResult] that contains all of the errors of
+ /// [results].
+ factory BuildResult.aggregate(Iterable<BuildResult> results) {
+ var errors = unionAll(results.map((result) => result.errors));
+ return new BuildResult(errors);
+ }
String toString() {
if (succeeded) return "success";

Powered by Google App Engine
This is Rietveld 408576698