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

Unified Diff: runtime/lib/isolate_patch.dart

Issue 36933002: All isolate tests running on vm (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments. Created 7 years, 2 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 | « no previous file | tests/isolate/count_stream_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/isolate_patch.dart
diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
index c9c836b24947fc8283956db00c9d9e3aaea66ea2..ce68bf19fba299c642fbf9934bb915f7713b5481 100644
--- a/runtime/lib/isolate_patch.dart
+++ b/runtime/lib/isolate_patch.dart
@@ -25,7 +25,10 @@ class _ReceivePortImpl extends Stream implements ReceivePort {
{ Function onError,
void onDone(),
bool cancelOnError }) {
- return _controller.stream.listen(onData);
+ return _controller.stream.listen(onData,
+ onError: onError,
+ onDone: onDone,
+ cancelOnError: cancelOnError);
}
/**** Internal implementation details ****/
« no previous file with comments | « no previous file | tests/isolate/count_stream_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698