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

Unified Diff: sdk/lib/isolate/isolate_stream.dart

Issue 14251006: Remove AsyncError with Expando. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 8 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 | « sdk/lib/io/websocket_impl.dart ('k') | tests/co19/co19-compiler.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/isolate/isolate_stream.dart
diff --git a/sdk/lib/isolate/isolate_stream.dart b/sdk/lib/isolate/isolate_stream.dart
index cb4ca7711e024d2170206b3bf654c9b4bf0c40d1..0f0f63fc9e530c615c5e1ec1183c88f9de333203 100644
--- a/sdk/lib/isolate/isolate_stream.dart
+++ b/sdk/lib/isolate/isolate_stream.dart
@@ -77,7 +77,7 @@ class IsolateStream extends Stream<dynamic> {
}
StreamSubscription listen(void onData(event),
- { void onError(AsyncError error),
+ { void onError(error),
void onDone(),
bool cancelOnError}) {
return _controller.stream.listen(onData,
@@ -114,7 +114,7 @@ abstract class IsolateSink extends EventSink<dynamic> {
*/
void add(dynamic message);
- void addError(AsyncError errorEvent);
+ void addError(errorEvent);
/** Closing multiple times is allowed. */
void close();
« no previous file with comments | « sdk/lib/io/websocket_impl.dart ('k') | tests/co19/co19-compiler.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698