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

Unified Diff: tests/lib/async/future_value_chain4_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/future_microtask_test.dart ('k') | tests/lib/async/intercept_run_async1_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/future_value_chain4_test.dart
diff --git a/tests/lib/async/future_value_chain4_test.dart b/tests/lib/async/future_value_chain4_test.dart
index 2c7b6527f7189ca21aba0a840434d92b14b3dce8..2f09cfe4fef4a9b6033f64650a896f14e0b43b54 100644
--- a/tests/lib/async/future_value_chain4_test.dart
+++ b/tests/lib/async/future_value_chain4_test.dart
@@ -8,7 +8,7 @@ import 'dart:async';
class MyFuture implements Future {
then(valueHandler, {onError}) {
- runAsync(() { valueHandler(499); });
+ scheduleMicrotask(() { valueHandler(499); });
}
catchError(_) => null;
whenComplete(_) => null;
« no previous file with comments | « tests/lib/async/future_microtask_test.dart ('k') | tests/lib/async/intercept_run_async1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698