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

Unified Diff: tests/standalone/io/http_server_socket_test.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: tests/standalone/io/http_server_socket_test.dart
diff --git a/tests/standalone/io/http_server_socket_test.dart b/tests/standalone/io/http_server_socket_test.dart
index 113d75beb25c2a81d65afee7d67b092b87701528..4d5dd901f0e3cb40c5142c632725c0568dd2fdb6 100644
--- a/tests/standalone/io/http_server_socket_test.dart
+++ b/tests/standalone/io/http_server_socket_test.dart
@@ -109,7 +109,7 @@ class SocketMock implements Socket {
OutputStream get outputStream => _outputStream;
- int hashCode() => _hashCode;
+ int get hashCode => _hashCode;
List<int> _read;
bool _closed = false;

Powered by Google App Engine
This is Rietveld 408576698