| 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 314a94bc85c3e2f8b0fe5f3ca0d993966d5cef85..e38def034d6540c4fd436734632503e3fcab961d 100644
|
| --- a/pkg/compiler/lib/src/elements/names.dart
|
| +++ b/pkg/compiler/lib/src/elements/names.dart
|
| @@ -49,7 +49,6 @@ abstract class Name {
|
|
|
| LibraryElement get library;
|
|
|
| -
|
| /// Returns `true` when [s] is private if used as an identifier.
|
| static bool isPrivateName(String s) => !s.isEmpty && s.codeUnitAt(0) == $_;
|
|
|
| @@ -107,7 +106,7 @@ class PrivateName extends PublicName {
|
|
|
| bool operator ==(other) {
|
| if (other is! PrivateName) return false;
|
| - return super==(other) && library == other.library;
|
| + return super == (other) && library == other.library;
|
| }
|
|
|
| String toString() => '${library.libraryName}#${super.toString()}';
|
|
|