Index: sdk/lib/isolate/isolate.dart |
diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart |
index 2774f5bc07c34a4d10164f64996b8b15de149709..8db81dab0b2fbd7c564d4bf28c719049f06afa35 100644 |
--- a/sdk/lib/isolate/isolate.dart |
+++ b/sdk/lib/isolate/isolate.dart |
@@ -206,6 +206,11 @@ abstract class RawReceivePort { |
* After a call to this method any incoming message is silently dropped. |
*/ |
void close(); |
+ |
+ /** |
+ * Returns a send port that sends to this receive port. |
ngeoffray
2013/11/20 10:16:30
a send port -> a [SendPort].
Lasse Reichstein Nielsen
2013/11/20 10:35:26
Done.
|
+ */ |
+ SendPort get sendPort; |
} |
/** |