ev3dev / lmsasm

Assembler for LEGO MINDSTORMS EV3
Other
7 stars 5 forks source link

language server #6

Open dlech opened 5 years ago

dlech commented 5 years ago

It would be really cool (but probably not useful to many people) to implement a language server that could be used the the lmsasm VS Code extension for code completion.

dlech commented 5 years ago

I've tinkered with this a bit by copying code from the Sourcegraph Go language server. There is quite a bit of work to be done to get it working. (Example.)

I've also considered re-writing this library in TypeScript/JavaScript because distributing platform-specific binaries with VS Code extensions is a pain.

dlech commented 4 years ago

It turns out that Go can interoperate with JavaScript using WebAssembly, so this is significantly simplified.