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

Unified Diff: tests/lib/async/zone_run_guarded_test.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 | « tests/lib/async/zone_debug_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/zone_run_guarded_test.dart
diff --git a/tests/lib/async/zone_run_guarded_test.dart b/tests/lib/async/zone_run_guarded_test.dart
index 42faaeb8f9ca2754e311a4c4ec13e1579d4334e4..5bb3e18c9394e3d7b151349db07c0f993a545174 100644
--- a/tests/lib/async/zone_run_guarded_test.dart
+++ b/tests/lib/async/zone_run_guarded_test.dart
@@ -23,10 +23,11 @@ main() {
events.add("forked.run");
return parent.run(origin, f);
},
- handleUncaughtError: (Zone self, ZoneDelegate parent, Zone origin, e) {
+ handleUncaughtError:
+ (Zone self, ZoneDelegate parent, Zone origin, error, stackTrace) {
Expect.identical(Zone.ROOT, Zone.current);
Expect.identical(forked, origin);
- events.add("forked.handleUncaught $e");
+ events.add("forked.handleUncaught $error");
return 499;
}));
« no previous file with comments | « tests/lib/async/zone_debug_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698