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

Unified Diff: runtime/bin/websocket.dart

Issue 11191078: Make hashCode a getter and not a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 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: runtime/bin/websocket.dart
diff --git a/runtime/bin/websocket.dart b/runtime/bin/websocket.dart
index 47e184a948b7c09a8fc465319ca7bd07fb959e3f..34c92dc78788c2e051972b3896213485f327cdcd 100644
--- a/runtime/bin/websocket.dart
+++ b/runtime/bin/websocket.dart
@@ -93,7 +93,7 @@ abstract class WebSocketConnection {
/**
* WebSocketConnection is hashable.
*/
- int hashCode();
+ int get hashCode;
}
@@ -166,7 +166,7 @@ abstract class WebSocketClientConnection {
/**
* WebSocketClientConnection is hashable.
*/
- int hashCode();
+ int get hashCode;
}

Powered by Google App Engine
This is Rietveld 408576698