Revision 7467fd36b902e29fbfa18b99dc5a37140a94b4a3 authored by JiaLiPassion on 30 June 2020, 21:11:14 UTC, committed by Misko Hevery on 24 July 2020, 22:22:48 UTC
Close #37333

`clearTimeout` is patched by `zone.js`, and it finally calls the native delegate of `clearTimeout`,
the current implemention only call `clearNative(id)`, but it should call on object `global` like
`clearNative.call(global, id)`. Otherwise in some env, it will throw error
`clearTimeout called on an object that does not implement interface Window`

PR Close #37858
1 parent aca0198
Raw File
.bazelversion
3.2.0
# [NB: this comment has to be after the first line, see https://github.com/bazelbuild/bazelisk/issues/117]
# When updating the Bazel version you also need to update the RBE toolchains version in package.bzl
back to top