| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.async; | 5 part of dart.async; |
| 6 | 6 |
| 7 typedef void _AsyncCallback(); | 7 typedef void _AsyncCallback(); |
| 8 | 8 |
| 9 bool _callbacksAreEnqueued = false; | 9 bool _callbacksAreEnqueued = false; |
| 10 Queue<_AsyncCallback> _asyncCallbacks = new Queue<_AsyncCallback>(); | 10 Queue<_AsyncCallback> _asyncCallbacks = new Queue<_AsyncCallback>(); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 * | 48 * |
| 49 * Timer.run(() { print("executed"); }); // Will never be executed; | 49 * Timer.run(() { print("executed"); }); // Will never be executed; |
| 50 * foo() { | 50 * foo() { |
| 51 * asyncRun(foo); // Schedules [foo] in front of other events. | 51 * asyncRun(foo); // Schedules [foo] in front of other events. |
| 52 * } | 52 * } |
| 53 * main() { | 53 * main() { |
| 54 * foo(); | 54 * foo(); |
| 55 * } | 55 * } |
| 56 */ | 56 */ |
| 57 void runAsync(void callback()) { | 57 void runAsync(void callback()) { |
| 58 _Zone currentZone = _Zone._current; | 58 if (Zone.current == Zone.ROOT) { |
| 59 currentZone.runAsync(callback, currentZone); | 59 // No need to bind the callback. We know that the root's runAsync will |
| 60 // be invoked in the root zone. |
| 61 Zone.current.scheduleMicrotask(callback); |
| 62 return; |
| 63 } |
| 64 Zone.current.scheduleMicrotask( |
| 65 Zone.current.bindCallback(callback, runGuarded: true)); |
| 60 } | 66 } |
| 61 | 67 |
| 62 class _AsyncRun { | 68 class _AsyncRun { |
| 63 /** Enqueues the given callback before any other event in the event-loop. */ | 69 /** Enqueues the given callback before any other event in the event-loop. */ |
| 64 external static void _enqueueImmediate(void callback()); | 70 external static void _enqueueImmediate(void callback()); |
| 65 } | 71 } |
| OLD | NEW |