You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the polyfill at f7c550b, and according to the algorithm in "Method: Signal.subtle.Watcher.prototype.watch(...signals)", this error thrown in the watched callback leaves Watcher in an inconsistent state. a has the watcher as a sink but neither b nor c do (so we have a case where watcher.watch has added some, but not all, of its arguments as sources); also, the watcher lists both a and b as sources so its state is inconsistent as to whether b is watched or not.
The text was updated successfully, but these errors were encountered:
Consider the following code:
In the polyfill at f7c550b, and according to the algorithm in "Method: Signal.subtle.Watcher.prototype.watch(...signals)", this error thrown in the
watched
callback leavesWatcher
in an inconsistent state.a
has the watcher as a sink but neitherb
norc
do (so we have a case wherewatcher.watch
has added some, but not all, of its arguments as sources); also, the watcher lists botha
andb
as sources so its state is inconsistent as to whetherb
is watched or not.The text was updated successfully, but these errors were encountered: