diff --git a/apps/ppp/src/adapters/runtime/dotnet/info.svelte b/apps/ppp/src/adapters/runtime/dotnet/info.svelte index 9d9699e..34d2a0d 100644 --- a/apps/ppp/src/adapters/runtime/dotnet/info.svelte +++ b/apps/ppp/src/adapters/runtime/dotnet/info.svelte @@ -10,7 +10,7 @@
Your code is compiled by the Roslyn compiler (compiled to WebAssembly with a - several .NET assemblies) and is executed in the context of the current page. + several .NET assemblies) and is executed in a web worker environment.
Available libraries:
diff --git a/apps/ppp/src/pages/editor/_runtimes.ts b/apps/ppp/src/pages/editor/_runtimes.ts index 2ce07cc..d71b480 100644 --- a/apps/ppp/src/pages/editor/_runtimes.ts +++ b/apps/ppp/src/pages/editor/_runtimes.ts @@ -11,7 +11,7 @@ import RustWorker from "@/adapters/runtime/rust/worker?worker"; import GleamWorker from "@/adapters/runtime/gleam/worker?worker"; import JavaWorker from "@/adapters/runtime/java/worker?worker"; import RubyWorker from "@/adapters/runtime/ruby/worker?worker"; -import { makeDotnetCompiler } from '@/adapters/runtime/dotnet/compiler-factory' +import DotnetWorker from '@/adapters/runtime/dotnet/worker?worker'; import phpProgram from './_program.php?raw'; import tsProgram from './_program.ts?raw'; @@ -60,7 +60,7 @@ export const RUNTIMES: Record