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

Unified Diff: sdk/lib/_internal/pub/lib/src/utils.dart

Issue 203383014: Don't run transformers unnecessarily during the load process. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 9 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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/utils.dart
diff --git a/sdk/lib/_internal/pub/lib/src/utils.dart b/sdk/lib/_internal/pub/lib/src/utils.dart
index afdf94fe4c746037d2bb282ac758ff1402c5190f..f5727a46eeff0127eed9ad2d35b11fa6a458ceb3 100644
--- a/sdk/lib/_internal/pub/lib/src/utils.dart
+++ b/sdk/lib/_internal/pub/lib/src/utils.dart
@@ -284,9 +284,9 @@ Map mapMapValues(Map map, fn(key, value)) => mapMap(map, (key, _) => key, fn);
/// Returns the shortest path from [start] to [end] in [graph].
///
-/// The graph is represented by a map whose keys are vertices and whose values
-/// are vertices reachable from the keys. [start] and [end] must be vertices in
-/// this graph.
+/// The graph is represented by a map where each key is a vertex and the value
+/// is the set of other vertices directly reachable from the key. [start] and
+/// [end] must be vertices in this graph.
List shortestPath(Map<dynamic, Iterable> graph, start, end) {
assert(graph.containsKey(start));
assert(graph.containsKey(end));
@@ -332,6 +332,20 @@ List shortestPath(Map<dynamic, Iterable> graph, start, end) {
return path.toList();
}
+/// Returns a copy of [graph] with all the edges reversed.
+///
+/// The graph is represented by a map where each key is a vertex and the value
+/// is the set of other vertices directly reachable from the key.
+Map<dynamic, Set> reverseGraph(Map<dynamic, Set> graph) {
+ var reversed = new Map.fromIterable(graph.keys, value: (_) => new Set());
+ graph.forEach((vertex, edges) {
+ for (var edge in edges) {
+ reversed[edge].add(vertex);
+ }
+ });
+ return reversed;
+}
+
/// Replace each instance of [matcher] in [source] with the return value of
/// [fn].
String replace(String source, Pattern matcher, String fn(Match)) {
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698