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

Side by Side Diff: tests/lib/async/catch_errors.dart

Issue 25027004: Add second argument to Future error handlers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/async/zone.dart ('k') | tests/lib/async/stack_trace01_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library catch_errors; 1 library catch_errors;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 4
5 Stream catchErrors(void body()) { 5 Stream catchErrors(void body()) {
6 StreamController controller; 6 StreamController controller;
7 7
8 bool onError(e) { 8 bool onError(e, st) {
9 controller.add(e); 9 controller.add(e);
10 return true; 10 return true;
11 } 11 }
12 12
13 void onListen() { 13 void onListen() {
14 runZoned(body, onError: onError); 14 runZoned(body, onError: onError);
15 } 15 }
16 16
17 controller = new StreamController(onListen: onListen); 17 controller = new StreamController(onListen: onListen);
18 return controller.stream; 18 return controller.stream;
19 } 19 }
OLDNEW
« no previous file with comments | « sdk/lib/async/zone.dart ('k') | tests/lib/async/stack_trace01_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698