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

Unified Diff: tests/lib/async/schedule_microtask4_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/schedule_microtask3_test.dart ('k') | tests/lib/async/schedule_microtask5_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/schedule_microtask4_test.dart
diff --git a/tests/lib/async/run_async4_test.dart b/tests/lib/async/schedule_microtask4_test.dart
similarity index 97%
rename from tests/lib/async/run_async4_test.dart
rename to tests/lib/async/schedule_microtask4_test.dart
index 26db3901e4f90ef55c249f17947e6b0d42db4a08..5b5a2ee51327105337d4a17dde76653ed8781a78 100644
--- a/tests/lib/async/run_async4_test.dart
+++ b/tests/lib/async/schedule_microtask4_test.dart
@@ -12,7 +12,7 @@ void startTest(SendPort finishPort, replyPort) {
int invokedCallbacks = 0;
for (int i = 0; i < 100; i++) {
- runAsync(() {
+ scheduleMicrotask(() {
invokedCallbacks++;
if (invokedCallbacks == 100) finishPort.send("done");
if (i == 50) throw new UnsupportedError("ignore exception");
« no previous file with comments | « tests/lib/async/schedule_microtask3_test.dart ('k') | tests/lib/async/schedule_microtask5_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698