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

Unified Diff: tests/lib/async/zone_register_callback_unary_test.dart

Issue 3014593002: Use generic functions in zones. (Closed)
Patch Set: Added changes missing from patch set #2 Created 3 years, 3 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_register_callback_test.dart ('k') | tests/lib/async/zone_root_bind_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/zone_register_callback_unary_test.dart
diff --git a/tests/lib/async/zone_register_callback_unary_test.dart b/tests/lib/async/zone_register_callback_unary_test.dart
index 67697fe0da76a828d7b5ce5b061a2f84bbbc3b6e..b0de53a3e078e00185f8c72137b3dcb394e7f357 100644
--- a/tests/lib/async/zone_register_callback_unary_test.dart
+++ b/tests/lib/async/zone_register_callback_unary_test.dart
@@ -15,7 +15,7 @@ main() {
Expect.identical(Zone.ROOT, Zone.current);
Zone forked = Zone.current.fork(specification: new ZoneSpecification(
registerUnaryCallback:
- (Zone self, ZoneDelegate parent, Zone origin, f(arg)) {
+ <R, T>(Zone self, ZoneDelegate parent, Zone origin, R f(T arg)) {
// The zone is still the same as when origin.run was invoked, which
// is the root zone. (The origin zone hasn't been set yet).
Expect.identical(Zone.current, Zone.ROOT);
« no previous file with comments | « tests/lib/async/zone_register_callback_test.dart ('k') | tests/lib/async/zone_root_bind_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698