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

Unified Diff: runtime/lib/schedule_microtask_patch.dart

Issue 79243002: Implement scheduleImmediate for the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Simplify since the embedder sets the closure. Created 7 years, 1 month 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 | « runtime/lib/isolate_patch.dart ('k') | tests/co19/co19-dartium.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/schedule_microtask_patch.dart
diff --git a/runtime/lib/schedule_microtask_patch.dart b/runtime/lib/schedule_microtask_patch.dart
index 75e87c8eb2fde52d0e0fa2e426e0a8478f0f2960..f08de2b907908206f03ae5fe21fd215cf64ddac4 100644
--- a/runtime/lib/schedule_microtask_patch.dart
+++ b/runtime/lib/schedule_microtask_patch.dart
@@ -5,10 +5,7 @@
patch class _AsyncRun {
/* patch */ static void _scheduleImmediate(void callback()) {
if (_ScheduleImmediate._closure == null) {
- // TODO(9001): don't default to using the Timer to enqueue the immediate
- // callback.
- _createTimer(Duration.ZERO, callback);
- return;
+ throw new UnsupportedError("Microtasks are not supported");
}
_ScheduleImmediate._closure(callback);
}
« no previous file with comments | « runtime/lib/isolate_patch.dart ('k') | tests/co19/co19-dartium.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698