Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart b/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
| index 54bbdc140c44b724ca5e6aee8cf8bdd7c229f86d..dd8cc310e005580af8f0d3f83b406773415103c6 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
| @@ -1315,6 +1315,7 @@ class TimerImpl implements Timer { |
| _globalState.topEventLoop.activeTimerCount--; |
| if (_once) { |
| JS('void', '#.clearTimeout(#)', globalThis, _handle); |
| + JS('void', '#.clearImmediate(#)', globalThis, _handle); |
|
blois
2013/02/13 03:09:24
Is the handle guaranteed to be unique between thes
Emily Fortuna
2013/02/13 20:19:44
Thank you -- yes. I had intended to go back and fi
Emily Fortuna
2013/02/13 20:19:44
No, removed.
|
| } else { |
| JS('void', '#.clearInterval(#)', globalThis, _handle); |
| } |