| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index ce7bccb5712346ccd0636e89dea2a557c14604de..c72614e69323737f7b9197b1ace007206ad03c22 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -32781,7 +32781,9 @@ class _PureIsolateTimer implements Timer {
|
|
|
| void cancel() {
|
| _cancel();
|
| - _HELPER_ISOLATE_PORT.send([_CANCEL_TIMER], _sendPort);
|
| + _HELPER_ISOLATE_PORT.then((port) {
|
| + port.send([_CANCEL_TIMER], _sendPort);
|
| + });
|
| }
|
|
|
| void _cancel() {
|
|
|