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

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

Issue 26151002: Rename runAsync to scheduleMicrotask. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add test. 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_run_guarded_test.dart ('k') | tests/lib/async/zone_run_unary_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/zone_run_test.dart
diff --git a/tests/lib/async/zone_run_test.dart b/tests/lib/async/zone_run_test.dart
index 51d52e2d1f4effb2334d904a41e76357da719293..8cb62f37af6bf9d4064002300017b9fc1ffb77af 100644
--- a/tests/lib/async/zone_run_test.dart
+++ b/tests/lib/async/zone_run_test.dart
@@ -44,21 +44,21 @@ main() {
result = forked.run(() {
Expect.identical(forked, Zone.current);
events.add("run closure 2");
- runAsync(() {
+ scheduleMicrotask(() {
events.add("run closure 3");
Expect.identical(forked, Zone.current);
done.complete(true);
});
return 1234;
});
- events.add("after nested runAsync");
+ events.add("after nested scheduleMicrotask");
Expect.equals(1234, result);
done.future.whenComplete(() {
Expect.listEquals(
["zone forked", "forked.run", "run closure", "executed run",
"forked.run", "executed run2", "forked.run", "run closure 2",
- "after nested runAsync", "forked.run", "run closure 3"],
+ "after nested scheduleMicrotask", "forked.run", "run closure 3"],
events);
asyncEnd();
});
« no previous file with comments | « tests/lib/async/zone_run_guarded_test.dart ('k') | tests/lib/async/zone_run_unary_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698