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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/async/zone.dart ('k') | tests/lib/async/stack_trace01_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/catch_errors.dart
diff --git a/tests/lib/async/catch_errors.dart b/tests/lib/async/catch_errors.dart
index ec11859fd427758ea4ef141c6e135a0c855ff891..0b0288fd83bfeff0d31b7db8bce1d4c39c3a197e 100644
--- a/tests/lib/async/catch_errors.dart
+++ b/tests/lib/async/catch_errors.dart
@@ -5,7 +5,7 @@ import 'dart:async';
Stream catchErrors(void body()) {
StreamController controller;
- bool onError(e) {
+ bool onError(e, st) {
controller.add(e);
return true;
}
« 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