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

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: Rebuild DOM and rebase. 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
Index: sdk/lib/isolate/isolate_stream.dart
diff --git a/sdk/lib/isolate/isolate_stream.dart b/sdk/lib/isolate/isolate_stream.dart
index 37db4e535d346b6e12bcae9c9c13615be3caed6d..3b660e2d3c5d5015717bc9dbd85b0bc645d855d9 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 unsubscribeOnError}) {
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();

Powered by Google App Engine
This is Rietveld 408576698