The server is still in an early state. It is usable but many advanced features have not yet been implemented.
The server has not yet had a stable release. You can build and install it locally if you would like to experiment with it in the meantime.
The easiest way to install the server is to grab one of the prebuilt binaries under releases.
First ensure you have the rust toolchain installed, then proceed as follows:
git clone https://github.com/wasm-lsp/wasm-lsp-server
cd wasm-lsp-server
cargo xtask init
cargo xtask install
The server is runtime agnostic and can be configured to run on async-std
, futures
, smol
, or tokio
.
The table below describes how to select a runtime. The tokio
runtime is selected by default.
runtime | command |
---|---|
async-std |
cargo xtask install --runtime=async-std |
futures |
cargo xtask install --runtime=futures |
smol |
cargo xtask install --runtime=smol |
tokio |
cargo xtask install --runtime=tokio |
Once the server is installed you can install the Visual Studio Code client extension.
extension | supported | kind |
---|---|---|
.wat |
☑ | WebAssembly module definition |
.wast |
☑ | WebAssembly script |
The server also supports parsing WebAssembly modules that use the following features:
- ☑ annotations
- ☑ multi-memory
- ☑ simd
Nothing planned.
Nothing planned.
- ☑ document parsing via wasm tree-sitter grammars
- ☑ document symbol provider
- ☑ syntax error diagnostics provider
- ☑ incremental document synchronization
- ☐ code action provider
- ☐ code lens provider
- ☐ completion provider
- ☐ definition provider
- ☐ document formatting (full and ranged) provider
- ☐ document highlight provider
- ☐ hover provider
- ☐ references provider
- ☐ workspace symbol provider
- ☐ semantic tokens provider
- ☐ signature help provider
- ☐ document validation
- ☐ integration with existing wasm toolchains
- ☐ implementation of the Debug Adapter Protocol