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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/library_loader.dart

Issue 14031011: Print the location of duplicated elements. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 7 years, 6 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: dart/sdk/lib/_internal/compiler/implementation/library_loader.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/library_loader.dart b/dart/sdk/lib/_internal/compiler/implementation/library_loader.dart
index 872aa5816c499446f89f25d8a3b080c5a70f296a..0e70958a74d6299085472ea2feec45a6f276cbfe 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/library_loader.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/library_loader.dart
@@ -528,7 +528,7 @@ class ImportLink {
importedLibrary.forEachExport((Element element) {
compiler.withCurrentElement(element, () {
if (combinatorFilter.exclude(element)) return;
- importingLibrary.addImport(element, compiler);
+ importingLibrary.addImport(element, import, compiler);
});
});
}

Powered by Google App Engine
This is Rietveld 408576698