| Index: sdk/lib/isolate/isolate.dart
|
| diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart
|
| index 2774f5bc07c34a4d10164f64996b8b15de149709..d6f7bb795876b8c07ccaf622c14203470417bb5f 100644
|
| --- a/sdk/lib/isolate/isolate.dart
|
| +++ b/sdk/lib/isolate/isolate.dart
|
| @@ -178,7 +178,7 @@ abstract class ReceivePort implements Stream {
|
| void close();
|
|
|
| /**
|
| - * Returns a send port that sends to this receive port.
|
| + * Returns a [SendPort] that sends to this receive port.
|
| */
|
| SendPort get sendPort;
|
| }
|
| @@ -206,6 +206,11 @@ abstract class RawReceivePort {
|
| * After a call to this method any incoming message is silently dropped.
|
| */
|
| void close();
|
| +
|
| + /**
|
| + * Returns a [SendPort] that sends to this receive port.
|
| + */
|
| + SendPort get sendPort;
|
| }
|
|
|
| /**
|
|
|