| Index: runtime/lib/event_loop_patch.dart
|
| diff --git a/runtime/lib/event_loop_patch.dart b/runtime/lib/event_loop_patch.dart
|
| index fe04c060bed955d4c596ac7d6bd1a4ffd30eebe6..c4b25b7b2c628ad9b9f5186b675819135e572e34 100644
|
| --- a/runtime/lib/event_loop_patch.dart
|
| +++ b/runtime/lib/event_loop_patch.dart
|
| @@ -5,6 +5,6 @@
|
| patch class _AsyncRun {
|
| /* patch */ static void _enqueueImmediate(void callback()) {
|
| // TODO(9001): don't use the Timer to enqueue the immediate callback.
|
| - _createTimer(Duration.ZERO, callback);
|
| + Timer.run(callback);
|
| }
|
| }
|
|
|