| Index: src/site/articles/event-loop/index.markdown
|
| diff --git a/src/site/articles/event-loop/index.markdown b/src/site/articles/event-loop/index.markdown
|
| index 4dd23728c0303fa4b2eb590559ad60407f8e293d..80e1941f2aa9e5fb8ee9c59a5d609c9f0aea7fee 100644
|
| --- a/src/site/articles/event-loop/index.markdown
|
| +++ b/src/site/articles/event-loop/index.markdown
|
| @@ -246,6 +246,7 @@ ending an IndexedDB transaction or event handler.
|
|
|
|
|
| #### Event queue: new Future()
|
| +{:.no_toc}
|
|
|
| To schedule a task on the event queue,
|
| use `new Future()` or `new Future.delayed()`.
|
| @@ -331,6 +332,7 @@ and (unless that function returns a Future)
|
| completes in a microtask, similar to #2.
|
|
|
| #### Microtask queue: scheduleMicrotask()
|
| +{:.no_toc}
|
|
|
| The dart:async library defines scheduleMicrotask() as a top-level function.
|
| You can call scheduleMicrotask() like this:
|
| @@ -559,6 +561,7 @@ for more information.
|
|
|
|
|
| #### Annotated sample and output
|
| +{:.no_toc}
|
|
|
| Here are some figures that might clarify the answer to question #2.
|
| First, here’s the annotated program source:
|
|
|