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

Unified Diff: tool/input_sdk/private/interceptors.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: tool/input_sdk/private/interceptors.dart
diff --git a/tool/input_sdk/private/interceptors.dart b/tool/input_sdk/private/interceptors.dart
index accb591c305f21ad15e399ce1fe5c608148d2cee..566d1f6c106b8b4761ee0d11bab929711adc8413 100644
--- a/tool/input_sdk/private/interceptors.dart
+++ b/tool/input_sdk/private/interceptors.dart
@@ -283,7 +283,7 @@ findInterceptorForType(Type type) {
abstract class Interceptor {
const Interceptor();
- bool operator ==(other) => identical(this, other);
+ bool operator ==(Object other) => identical(this, other);
int get hashCode => Primitives.objectHashCode(this);

Powered by Google App Engine
This is Rietveld 408576698