ERROR_CODE_WASM_LOAD_FAILED constant

ErrorCode const ERROR_CODE_WASM_LOAD_FAILED

-- Web-only WASM codes (-900..-903) ----------------------------------- The C ABI reserves -900..-999 for future use. The Web SDK currently squats four codes here for WASM bridge failures; codegen tags these as platform=web only. They are preserved verbatim so existing Web consumers don't break, but new SDKs SHOULD NOT emit them. Source: sdk/runanywhere-web/packages/core/src/Foundation/ErrorTypes.ts:58

Implementation

static const ErrorCode ERROR_CODE_WASM_LOAD_FAILED =
    ErrorCode._(900, _omitEnumNames ? '' : 'ERROR_CODE_WASM_LOAD_FAILED');