# Functions
No description provided by the author
# Variables
ErrRuntimeExpectedSharedMemory indicates that an operation was made against unshared memory when not allowed.
ErrRuntimeIndirectCallTypeMismatch indicates that the type check failed during call_indirect.
ErrRuntimeIntegerDivideByZero indicates that an integer div or rem instructions was executed with 0 as the divisor.
ErrRuntimeIntegerOverflow indicates that an integer arithmetic resulted in overflow value.
ErrRuntimeInvalidConversionToInteger indicates the Wasm function tries to convert NaN floating point value to integers during trunc variant instructions.
ErrRuntimeInvalidTableAccess means either offset to the table was out of bounds of table, or the target element in the table was uninitialized during call_indirect instruction.
ErrRuntimeOutOfBoundsMemoryAccess indicates that the program tried to access the region beyond the linear memory.
ErrRuntimeStackOverflow indicates that there are too many function calls, and the Engine terminated the execution.
ErrRuntimeTooManyWaiters indicates that atomic.wait was called with too many waiters.
ErrRuntimeUnalignedAtomic indicates that an atomic operation was made with incorrect memory alignment.
ErrRuntimeUnreachable means "unreachable" instruction was executed by the program.