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

Unified Diff: lib/src/dependency_graph.dart

Issue 1150143006: fixes #201, add support for custom URL mapping (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: remove options change Created 5 years, 7 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 | « lib/src/analysis_context.dart ('k') | lib/src/options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/dependency_graph.dart
diff --git a/lib/src/dependency_graph.dart b/lib/src/dependency_graph.dart
index 343556681337ca41973afe07ae8e84a7ea7e48e2..2ababc323dcf27ccf56a50f8bb46342c05a78af9 100644
--- a/lib/src/dependency_graph.dart
+++ b/lib/src/dependency_graph.dart
@@ -301,9 +301,6 @@ class DartSourceNode extends SourceNode {
: uri.resolve(directiveUri.stringValue);
var target =
ParseDartTask.resolveDirective(graph._context, _source, d, null);
- if (target != null) {
- if (targetUri != target.uri) print(">> ${target.uri} $targetUri");
- }
var node = graph.nodes.putIfAbsent(
targetUri, () => new DartSourceNode(graph, targetUri, target));
//var node = graph.nodeFromUri(targetUri);
« no previous file with comments | « lib/src/analysis_context.dart ('k') | lib/src/options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698