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
AsyncModuleExecutionFulfilled sorts a list according to "the order in which [the elements] had their [[AsyncEvaluation]] fields set to true".
That's pretty wild: it implies you need to keep track of not just the current state of the spec's data structures, but the order in which they changed. We should get rid of that.
The simplest fix would be to have a global integer which is incremented every time we use it, and store that in the field instead of the boolean.
The text was updated successfully, but these errors were encountered:
AsyncModuleExecutionFulfilled
sorts a list according to "the order in which [the elements] had their [[AsyncEvaluation]] fields set totrue
".That's pretty wild: it implies you need to keep track of not just the current state of the spec's data structures, but the order in which they changed. We should get rid of that.
The simplest fix would be to have a global integer which is incremented every time we use it, and store that in the field instead of the boolean.
The text was updated successfully, but these errors were encountered: