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
Always convert methods in two phases, even in eager mode
Previously in lazy mode we first converted all the method prototypes,
then later populated bodies, while in eager mode bodies were populated
as we went. Now we always use the former method, so eager mode is like
lazy mode except we then populate every method regardless of reachability.
This makes the process more uniform, and as a useful side-effect means
that the symbol table is populated by the time method conversion happens,
so we can check for static initialisers' existence or otherwise.
0 commit comments