| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2099,6 +2099,11 @@ meaning of the error depends on the specific function. | |||
| 2099 | 2099 | ||
| 2100 | 2100 | The WASI instance has already started. | |
| 2101 | 2101 | ||
| 2102 | + <a id="ERR_WASI_NOT_STARTED"></a> | ||
| 2103 | + ### `ERR_WASI_NOT_STARTED` | ||
| 2104 | + | ||
| 2105 | + The WASI instance has not been started. | ||
| 2106 | + | ||
| 2102 | 2107 | <a id="ERR_WORKER_INIT_FAILED"></a> | |
| 2103 | 2108 | ### `ERR_WORKER_INIT_FAILED` | |
| 2104 | 2109 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -54,6 +54,7 @@ void OnFatalError(const char* location, const char* message); | |||
| 54 | 54 | V(ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER, TypeError) \ | |
| 55 | 55 | V(ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED, Error) \ | |
| 56 | 56 | V(ERR_VM_MODULE_CACHED_DATA_REJECTED, Error) \ | |
| 57 | + V(ERR_WASI_NOT_STARTED, Error) \ | ||
| 57 | 58 | V(ERR_WORKER_INIT_FAILED, Error) \ | |
| 58 | 59 | V(ERR_PROTO_ACCESS, Error) | |
| 59 | 60 | ||
@@ -104,6 +105,7 @@ void OnFatalError(const char* location, const char* message); | |||
| 104 | 105 | V(ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER, \ | |
| 105 | 106 | "Cannot serialize externalized SharedArrayBuffer") \ | |
| 106 | 107 | V(ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED, "Failed to set PSK identity hint") \ | |
| 108 | + V(ERR_WASI_NOT_STARTED, "wasi.start() has not been called") \ | ||
| 107 | 109 | V(ERR_WORKER_INIT_FAILED, "Worker initialization failure") \ | |
| 108 | 110 | V(ERR_PROTO_ACCESS, \ | |
| 109 | 111 | "Accessing Object.prototype.__proto__ has been " \ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments