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
{{ message }}
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.
A bytecode verification feature was added in aa6aab1, but the code we're emitting for try-catch statements (#22, a9e3cbe) is not valid. Consider following code snippet:
Notice how weird it is and how many times the body of finally is repeated. The verifier itself is complaining about jump at 16 that is pointing literally nowhere (beyond the chunk itself), this should not happen.
The text was updated successfully, but these errors were encountered:
A bytecode verification feature was added in aa6aab1, but the code we're emitting for
try-catch
statements (#22, a9e3cbe) is not valid. Consider following code snippet:It will generate following bytecode:
Notice how weird it is and how many times the body of
finally
is repeated. The verifier itself is complaining about jump at16
that is pointing literally nowhere (beyond the chunk itself), this should not happen.The text was updated successfully, but these errors were encountered: