Packages
lumis_wasm_csharp
0.26.2
Tree-sitter parser and queries for csharp, compiled to WASM for Lumis
Current section
Files
Jump to
Current section
Files
lumis_wasm_csharp
README.md
README.md
# lumis_wasm_csharp
Self-contained Lumis language package for csharp.
The Tree-sitter parser is compiled to WASM and ships with the queries that highlight it.
Built with [`tree-sitter build --wasm`](https://tree-sitter.github.io/tree-sitter/cli/build.html) `v0.26.11`
[Lumis](https://lumis.sh) loads only the parsers a project depends on, so this dependency is what lets it highlight csharp.
## Installation
```elixir
def deps do
[
{:lumis, "~> 0.8"},
{:lumis_wasm_csharp, "~> 0.26.0"}
]
end
```
## What it contains
`priv/parsers/` holds the parser and the manifest that describes it. The manifest records the parser's size, its SHA-256 and the queries.
Lumis reads both from there, so nothing is downloaded at runtime. `mix release` carries them like any dependency's assets.
The application has no code. It starts nothing and supervises nothing.
## Parser
| Parser | Version | Rev |
| ------ | ------- | --- |
| [https://github.com/tree-sitter/tree-sitter-c-sharp.git](https://github.com/tree-sitter/tree-sitter-c-sharp.git) | 0.23.5 | cac6d5fb595f5811a076336682d5d595ac1c9e85 |
## License
The Lumis packaging is MIT. The parser itself is redistributed from the
upstream project above; see that project for its license.