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

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

Issue 2632643002: Remove LibraryEntity.libraryName (Closed)
Patch Set: Replace libraryOrScriptName with name Created 3 years, 10 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 12b3cfad7742bd29b1b2a007b10f83c26cadea9a..88e25229d47afbfeee254ab427e65ed71803b29e 100644
--- a/pkg/compiler/lib/src/elements/names.dart
+++ b/pkg/compiler/lib/src/elements/names.dart
@@ -109,5 +109,5 @@ class PrivateName extends PublicName {
return super == (other) && library == other.library;
}
- String toString() => '${library.libraryName}#${super.toString()}';
+ String toString() => '${library.name}#${super.toString()}';
}

Powered by Google App Engine
This is Rietveld 408576698