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
The current tests do not test br* instructions inside a try-catch block (either inside the body of the try block or one of the catch blocks). There are some subtleties here that I suspect it would be easy for an implementation to screw up without test coverage. (E.g., br out of a try block body to somewhere that then throws an exception -- the stack should be unwound to the correct place.) It would be helpful to have test coverage for these scenarios.
The text was updated successfully, but these errors were encountered:
The current tests do not test
br*
instructions inside a try-catch block (either inside the body of the try block or one of the catch blocks). There are some subtleties here that I suspect it would be easy for an implementation to screw up without test coverage. (E.g., br out of a try block body to somewhere that then throws an exception -- the stack should be unwound to the correct place.) It would be helpful to have test coverage for these scenarios.The text was updated successfully, but these errors were encountered: