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
Reverse order of execution of runtime callbacks (#24012)
This makes the `addOn<X>` functions use `[].push()` instead of
`[].unshift()` for enqueueing callbacks properly (hooks were processed
in the correct order, but runtime callbacks in each hook were enqueued
and executed in reverse compared to the order of registration).
The `AT<X>.unshift('callRuntimeCallbacks(on<X>);')` lines ensure runtime
callbacks are always executed before compile time callbacks.
Related tests updated accordingly.
0 commit comments