| Index: tool/input_sdk/lib/internal/symbol.dart
|
| diff --git a/tool/input_sdk/lib/internal/symbol.dart b/tool/input_sdk/lib/internal/symbol.dart
|
| index 21d976b119e423d42842c6a07d5dfc9169911427..ddb6c7ec5fba64b0e347128e3de17bf6361e65e2 100644
|
| --- a/tool/input_sdk/lib/internal/symbol.dart
|
| +++ b/tool/input_sdk/lib/internal/symbol.dart
|
| @@ -110,7 +110,7 @@ class Symbol implements core.Symbol {
|
| Symbol.validated(String name)
|
| : this._name = validatePublicSymbol(name);
|
|
|
| - bool operator ==(other) => other is Symbol && _name == other._name;
|
| + bool operator ==(Object other) => other is Symbol && _name == other._name;
|
|
|
| int get hashCode {
|
| const arbitraryPrime = 664597;
|
|
|