-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
draft: lsp format #1632
base: main
Are you sure you want to change the base?
draft: lsp format #1632
Conversation
@@ -23,7 +23,7 @@ declare const __EXTENSION_URL__: string; | |||
new BrowserMessageWriter(self), | |||
); | |||
|
|||
initSync(await wasmModule); | |||
initSync({ module: await wasmModule }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixes a warning i saw in the console. Not mandatory but will probably be needed in the future
@@ -26,7 +26,6 @@ use std::sync::{Arc, RwLock}; | |||
use wasm_bindgen::prelude::*; | |||
use wasm_bindgen_futures::future_to_promise; | |||
|
|||
#[cfg(debug_assertions)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not that println!
won't be visible in wasm.
I just removed #[cfg(debug_assertions)]
for debugging, don't remember how to enable it
Codecov ReportAttention: Patch coverage is 📢 Thoughts on this report? Let us know! |
Description
Breaking change?
Example
Checklist