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
Copy file name to clipboardExpand all lines: src/mono/browser/runtime/loader/polyfills.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ export function verifyEnvironment () {
22
22
mono_assert(ENVIRONMENT_IS_SHELL||typeofglobalThis.URL==="function","This browser/engine doesn't support URL API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features");
23
23
mono_assert(typeofglobalThis.BigInt64Array==="function","This browser/engine doesn't support BigInt64Array API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features");
24
24
if(WasmEnableThreads){
25
+
// TODO-LLVM: Comment this check out for now so we can run at least some tests.
25
26
//mono_assert(!ENVIRONMENT_IS_SHELL && !ENVIRONMENT_IS_NODE, "This build of dotnet is multi-threaded, it doesn't support shell environments like V8 or NodeJS. See also https://aka.ms/dotnet-wasm-features");
26
27
mono_assert(globalThis.SharedArrayBuffer!==undefined,"SharedArrayBuffer is not enabled on this page. Please use a modern browser and set Cross-Origin-Opener-Policy and Cross-Origin-Embedder-Policy http headers. See also https://aka.ms/dotnet-wasm-features");
27
28
mono_assert(typeofglobalThis.EventTarget==="function","This browser/engine doesn't support EventTarget API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features");
0 commit comments