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

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

Issue 2632643002: Remove LibraryEntity.libraryName (Closed)
Patch Set: Created 3 years, 11 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 a4a6f7a20464d1cb7906cea5c73f88f2926147ff..72bb08ea6d159b02576f467ef695f029b598d9e5 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