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
Current exception message does not carry any information about where the error occurred
Moreover, the exception is often raised by catching an IndexOutOfBoundsException, even when we are already aware of the limits; we should be able to check those limits explicitly, avoiding an expensive exception to be created
The text was updated successfully, but these errors were encountered:
While I generally agree about not creating exceptions needlessly, does it actually matter here? When OOB access occurs, the WASM program is terminated.
I just noticed that Memory has a mix of UninstantiableException and WasmRuntimeException, which should be cleaned up.
IndexOutOfBoundsException
, even when we are already aware of the limits; we should be able to check those limits explicitly, avoiding an expensive exception to be createdThe text was updated successfully, but these errors were encountered: