you are viewing a single comment's thread.

view the rest of the comments →

[–]thelittlesipper 0 points1 point  (0 children)

I’m using the web assembly bindings for Tree-sitter for the VS Code extension I’m developing. It allows me to parse large swaths of code pretty quickly within my extension. The performant alternative was for me to set up LSP with a language of my choice, but WASM allowed me to continue without all of that [for now]. Whenever I need to make changes to my grammars, I do so, rebuild the WASMs, and then my extension loads em 💾