| Index: src/tests/site/articles/event-loop/eventloop_test2/bin/eventloop_test2.dart
|
| diff --git a/src/tests/site/articles/event-loop/eventloop_test2/bin/eventloop_test2.dart b/src/tests/site/articles/event-loop/eventloop_test2/bin/eventloop_test2.dart
|
| index 8700e91c829bd3e4f978366fa5a4214660225191..927c5bb68278a58b14150749b13fbe7ff7a551dc 100644
|
| --- a/src/tests/site/articles/event-loop/eventloop_test2/bin/eventloop_test2.dart
|
| +++ b/src/tests/site/articles/event-loop/eventloop_test2/bin/eventloop_test2.dart
|
| @@ -1,7 +1,7 @@
|
| import 'dart:async';
|
| main() {
|
| print('main #1 of 2');
|
| - runAsync(() => print('runAsync #1 of 3'));
|
| + scheduleMicrotask(() => print('microtask #1 of 3'));
|
|
|
| new Future.delayed(new Duration(seconds:1),
|
| () => print('future #1 (delayed)'));
|
| @@ -10,11 +10,11 @@ main() {
|
| .then((_) => print('future #2a'))
|
| .then((_) {
|
| print('future #2b');
|
| - runAsync(() => print('runAsync #0 (from future #2b)'));
|
| + scheduleMicrotask(() => print('microtask #0 (from future #2b)'));
|
| })
|
| .then((_) => print('future #2c'));
|
|
|
| - runAsync(() => print('runAsync #2 of 3'));
|
| + scheduleMicrotask(() => print('microtask #2 of 3'));
|
|
|
| new Future(() => print('future #3 of 4'))
|
| .then((_) => new Future(
|
| @@ -22,6 +22,6 @@ main() {
|
| .then((_) => print('future #3b'));
|
|
|
| new Future(() => print('future #4 of 4'));
|
| - runAsync(() => print('runAsync #3 of 3'));
|
| + scheduleMicrotask(() => print('microtask #3 of 3'));
|
| print('main #2 of 2');
|
| }
|
|
|