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

Unified Diff: test/generated_sdk/lib/internal/symbol.dart

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix Created 5 years, 8 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: test/generated_sdk/lib/internal/symbol.dart
diff --git a/test/generated_sdk/lib/internal/symbol.dart b/test/generated_sdk/lib/internal/symbol.dart
index 7978aef173247a52eb40bc29e97a070caabc13a0..34088280c18af33776f6d0f569cd140bc5d5ab1a 100644
--- a/test/generated_sdk/lib/internal/symbol.dart
+++ b/test/generated_sdk/lib/internal/symbol.dart
@@ -111,7 +111,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;

Powered by Google App Engine
This is Rietveld 408576698