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

Unified Diff: packages/barback/lib/src/graph/node_status.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 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: packages/barback/lib/src/graph/node_status.dart
diff --git a/packages/barback/lib/src/graph/node_status.dart b/packages/barback/lib/src/graph/node_status.dart
index a42e523f4ffa0cdf073c9a86c16f736173adb4fd..71fdfece0f13305bab525a116721cf5a2b6c9f78 100644
--- a/packages/barback/lib/src/graph/node_status.dart
+++ b/packages/barback/lib/src/graph/node_status.dart
@@ -37,9 +37,8 @@ class NodeStatus {
final String _name;
/// Returns the dirtiest status in [statuses].
- static NodeStatus dirtiest(Iterable<NodeStatus> statuses) =>
- statuses.fold(NodeStatus.IDLE,
- (status1, status2) => status1.dirtier(status2));
+ static NodeStatus dirtiest(Iterable<NodeStatus> statuses) => statuses.fold(
+ NodeStatus.IDLE, (status1, status2) => status1.dirtier(status2));
const NodeStatus(this._name);
@@ -51,4 +50,4 @@ class NodeStatus {
if (this == MATERIALIZING || other == MATERIALIZING) return MATERIALIZING;
return IDLE;
}
-}
+}
« no previous file with comments | « packages/barback/lib/src/graph/asset_cascade.dart ('k') | packages/barback/lib/src/graph/package_graph.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698