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

Unified Diff: sdk/lib/async/stream_impl.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 | « sdk/lib/async/future.dart ('k') | sdk/lib/async/zone.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/async/stream_impl.dart
diff --git a/sdk/lib/async/stream_impl.dart b/sdk/lib/async/stream_impl.dart
index 580e3cebe394d398a4fca2599b229180fbdea5cc..7f128ed658fc756e7fe6631e76cedd44f5ea9ba4 100644
--- a/sdk/lib/async/stream_impl.dart
+++ b/sdk/lib/async/stream_impl.dart
@@ -579,13 +579,13 @@ abstract class _PendingEvents {
* State of being scheduled.
*
* Set to [_STATE_SCHEDULED] when pending events are scheduled for
- * async dispatch. Since we can't cancel a [runAsync] call, if schduling
- * is "canceled", the _state is simply set to [_STATE_CANCELED] which will
- * make the async code do nothing except resetting [_state].
+ * async dispatch. Since we can't cancel a [scheduleMicrotask] call, if
+ * scheduling is "canceled", the _state is simply set to [_STATE_CANCELED]
+ * which will make the async code do nothing except resetting [_state].
*
* If events are scheduled while the state is [_STATE_CANCELED], it is
- * merely switched back to [_STATE_SCHEDULED], but no new call to [runAsync]
- * is performed.
+ * merely switched back to [_STATE_SCHEDULED], but no new call to
+ * [scheduleMicrotask] is performed.
*/
int _state = _STATE_UNSCHEDULED;
@@ -608,7 +608,7 @@ abstract class _PendingEvents {
_state = _STATE_SCHEDULED;
return;
}
- runAsync(() {
+ scheduleMicrotask(() {
int oldState = _state;
_state = _STATE_UNSCHEDULED;
if (oldState == _STATE_CANCELED) return;
« no previous file with comments | « sdk/lib/async/future.dart ('k') | sdk/lib/async/zone.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698