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
Problem with implementing it is we down break and continue to single jumps which means finally can't be executed correctly and return is lowered to OP_RET which instantly returns, there could be one way to just jump to finally block on continue,break and return but this will not work as expected.
Starlight needs support for code like this:
Right now it returns
1
but should return2
.MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch#the_finally-block
The text was updated successfully, but these errors were encountered: