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
if (message !== "wp-codebox-trigger-runtime-rejection") return
15
-
const error = new WebAssembly.RuntimeError("null function or function signature mismatch")
16
-
error.stack = "RuntimeError: null function or function signature mismatch\\n at php.wasm.zif_mysqli_poll (wasm://wasm/php.wasm-05996276:wasm-function[12986]:0x9949a8)"
17
-
Promise.reject(error)
14
+
if (message === "wp-codebox-trigger-non-wasm-rejection") {
if (message === "wp-codebox-trigger-php-wasm-rejection") {
19
+
const error = new WebAssembly.RuntimeError("null function or function signature mismatch")
20
+
error.stack = "RuntimeError: null function or function signature mismatch\\n at php.wasm.zif_mysqli_poll (wasm://wasm/php.wasm-05996276:wasm-function[12986]:0x9949a8)"
21
+
Promise.reject(error)
22
+
}
18
23
})
19
24
`,"utf8")
20
25
@@ -33,26 +38,36 @@ async function assertWorkerTerminates(version: string): Promise<void> {
0 commit comments