| 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 38e094595e6ad5a8b10186aca69310370a6cf591..56f3bf1cc9a07d2017598995c36d3e709f215da6 100644
|
| --- a/pkg/compiler/lib/src/elements/names.dart
|
| +++ b/pkg/compiler/lib/src/elements/names.dart
|
| @@ -46,8 +46,6 @@ abstract class Name {
|
| /// privacy into account.
|
| bool isSimilarTo(Name other);
|
| int get similarHashCode;
|
| -
|
| - LibraryElement get library;
|
| }
|
|
|
| class PublicName implements Name {
|
| @@ -74,8 +72,6 @@ class PublicName implements Name {
|
| bool isSimilarTo(Name other) =>
|
| text == other.text && isSetter == other.isSetter;
|
| int get similarHashCode => text.hashCode + 11 * isSetter.hashCode;
|
| -
|
| - LibraryElement get library => null;
|
|
|
| String toString() => isSetter ? '$text=' : text;
|
| }
|
|
|