| Index: dart/sdk/lib/isolate/isolate.dart
|
| ===================================================================
|
| --- dart/sdk/lib/isolate/isolate.dart (revision 29787)
|
| +++ dart/sdk/lib/isolate/isolate.dart (working copy)
|
| @@ -206,35 +206,6 @@
|
| }
|
|
|
| /**
|
| - * [SendPortSync]s are created from [ReceivePortSync]s. Any message sent through
|
| - * a [SendPortSync] is delivered to its respective [ReceivePortSync]. There
|
| - * might be many [SendPortSync]s for the same [ReceivePortSync].
|
| - *
|
| - * [SendPortSync]s can be transmitted to other isolates.
|
| - *
|
| - * *DEPRECATED*.
|
| - */
|
| -@deprecated
|
| -abstract class SendPortSync {
|
| - /**
|
| - * Sends a synchronous message to this send port and returns the result.
|
| - */
|
| - callSync(var message);
|
| -
|
| - /**
|
| - * Tests whether [other] is a [SendPortSync] pointing to the same
|
| - * [ReceivePortSync] as this one.
|
| - */
|
| - bool operator==(var other);
|
| -
|
| - /**
|
| - * Returns an immutable hash code for this send port that is
|
| - * consistent with the == operator.
|
| - */
|
| - int get hashCode;
|
| -}
|
| -
|
| -/**
|
| * Wraps unhandled exceptions thrown during isolate execution. It is
|
| * used to show both the error message and the stack trace for unhandled
|
| * exceptions.
|
|
|