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

Unified Diff: pkg/observe/lib/src/microtask.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 | « pkg/observe/lib/src/list_path_observer.dart ('k') | pkg/observe/lib/src/observable_list.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/observe/lib/src/microtask.dart
diff --git a/pkg/observe/lib/src/microtask.dart b/pkg/observe/lib/src/microtask.dart
index 6689a8ca488c21eeebe969f703dbfebaed24613b..307502afa922b3f6eeb79fb57e83878ee1b0d82b 100644
--- a/pkg/observe/lib/src/microtask.dart
+++ b/pkg/observe/lib/src/microtask.dart
@@ -6,7 +6,8 @@
* *Warning*: this library is **internal**, and APIs are subject to change.
*
* Wraps a callback using [wrapMicrotask] and provides the ability to pump all
- * observable objects and [runAsync] calls via [performMicrotaskCheckpoint].
+ * observable objects and [scheduleMicrotask] calls via
+ * [performMicrotaskCheckpoint].
*/
library observe.src.microtask;
@@ -21,7 +22,7 @@ import 'package:observe/observe.dart' show Observable;
* This change pumps events relevant to observers and data-binding tests.
* This must be used inside an [observeTest].
*
- * Executes all pending [runAsync] calls on the event loop, as well as
+ * Executes all pending [scheduleMicrotask] calls on the event loop, as well as
* performing [Observable.dirtyCheck], until there are no more pending events.
* It will always dirty check at least once.
*/
@@ -66,4 +67,4 @@ runMicrotask(body()) => runZonedExperimental(() {
} finally {
performMicrotaskCheckpoint();
}
-}, onRunAsync: (callback) => _pending.add(callback));
+}, onScheduleMicrotask: (callback) => _pending.add(callback));
« no previous file with comments | « pkg/observe/lib/src/list_path_observer.dart ('k') | pkg/observe/lib/src/observable_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698