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

Unified Diff: runtime/lib/isolate_patch.dart

Issue 1386253003: Fixes RawReceivePort.hashCode (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | tests/isolate/raw_port_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/isolate_patch.dart
diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
index 08fc2473f576a7fd6472dc0b2639da83ba0794db..9970d921c7557e7fc54d21e0e007960db98b4bab 100644
--- a/runtime/lib/isolate_patch.dart
+++ b/runtime/lib/isolate_patch.dart
@@ -127,7 +127,7 @@ class _RawReceivePortImpl implements RawReceivePort {
}
int get hashCode {
- return sendPort.hashCode();
+ return sendPort.hashCode;
}
Uri get remotePortUri => new Uri.https('localhost', '55');
« no previous file with comments | « no previous file | tests/isolate/raw_port_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698