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

Unified Diff: pkg/analyzer/lib/src/generated/utilities_collection.dart

Issue 214593008: Rollback pkg/analyzer that breaks code_transformers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « pkg/analyzer/lib/src/generated/source_io.dart ('k') | pkg/analyzer/lib/src/generated/utilities_dart.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/utilities_collection.dart
diff --git a/pkg/analyzer/lib/src/generated/utilities_collection.dart b/pkg/analyzer/lib/src/generated/utilities_collection.dart
index c938d9f10bb7f20655b076ca917d4aa92ecb8bf0..b8b789097ed2441731ef63bcdff62869fbdfe79a 100644
--- a/pkg/analyzer/lib/src/generated/utilities_collection.dart
+++ b/pkg/analyzer/lib/src/generated/utilities_collection.dart
@@ -336,7 +336,7 @@ class DirectedGraph_SccFinder<N> {
/**
* The graph to work with.
*/
- final DirectedGraph<N> _graph;
+ DirectedGraph<N> _graph;
/**
* The index used to uniquely identify the depth of nodes.
@@ -356,7 +356,9 @@ class DirectedGraph_SccFinder<N> {
/**
* Initialize a newly created finder.
*/
- DirectedGraph_SccFinder(this._graph) : super();
+ DirectedGraph_SccFinder(DirectedGraph<N> graph) : super() {
+ this._graph = graph;
+ }
/**
* Return a list containing the nodes that are part of the strongly connected component that
« no previous file with comments | « pkg/analyzer/lib/src/generated/source_io.dart ('k') | pkg/analyzer/lib/src/generated/utilities_dart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698