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

Unified Diff: pkg/compiler/lib/src/elements/names.dart

Issue 1335983004: Add ImportElement and ExportElement (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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: pkg/compiler/lib/src/elements/names.dart
diff --git a/pkg/compiler/lib/src/elements/names.dart b/pkg/compiler/lib/src/elements/names.dart
index 514729c8f61fe9516aa8eb06c883b59337403e9c..314a94bc85c3e2f8b0fe5f3ca0d993966d5cef85 100644
--- a/pkg/compiler/lib/src/elements/names.dart
+++ b/pkg/compiler/lib/src/elements/names.dart
@@ -110,5 +110,5 @@ class PrivateName extends PublicName {
return super==(other) && library == other.library;
}
- String toString() => '${library.getLibraryName()}#${super.toString()}';
+ String toString() => '${library.libraryName}#${super.toString()}';
}

Powered by Google App Engine
This is Rietveld 408576698