-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9096da6
commit 9de0f6c
Showing
6 changed files
with
78 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,7 @@ export const COMPILE_ARGS = [ | |
"-pedantic-errors", | ||
"-Wall", | ||
]; | ||
|
||
export const editorValueGetter = { | ||
get: () => "" | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import ClangdWorker from "./main.worker?worker"; | ||
|
||
export async function createServer() { | ||
let clangdResolve = () => {}; | ||
const clangdReady = new Promise<void>((r) => (clangdResolve = r)); | ||
const worker = new ClangdWorker(); | ||
const readyListener = (e: MessageEvent) => { | ||
if (e.data === "ready") { | ||
clangdResolve(); | ||
worker.removeEventListener("message", readyListener); | ||
} | ||
}; | ||
worker.addEventListener("message", readyListener); | ||
await clangdReady; | ||
return worker; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters