| Index: lib/runtime/dart/async.js
|
| diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js
|
| index 0647976dbbf36d74af0c7f96198b3415e6dffe3f..7199d8541a783e8ff3e44bf23ce1f902566a444f 100644
|
| --- a/lib/runtime/dart/async.js
|
| +++ b/lib/runtime/dart/async.js
|
| @@ -84,7 +84,7 @@ var async;
|
| // Function sendEvent: () → void
|
| function sendEvent() {
|
| watch.reset();
|
| - let data = computation(((x) => computationCount = dart.notNull(x$) + 1, x$)(computationCount));
|
| + let data = computation(((x) => computationCount = dart.notNull(x) + 1, x)(computationCount));
|
| controller.add(data);
|
| }
|
| // Function startPeriodicTimer: () → void
|
| @@ -1654,7 +1654,7 @@ var async;
|
| }
|
| }
|
| for (let future of futures) {
|
| - let pos = ((x) => remaining = dart.notNull(x$) + 1, x$)(remaining);
|
| + let pos = ((x) => remaining = dart.notNull(x) + 1, x)(remaining);
|
| future.then(((value) => {
|
| remaining = dart.notNull(remaining) - 1;
|
| if (values !== null) {
|
|
|