Advanced tooling roadmap
Debugging (DAP), Tree-sitter, playground, and ecosystem extras.
This page describes planned or partial tooling beyond the core LSP + VS Code extension.
Debugger (DAP)
Status: Not shipped.
Tish can run interpreted (VM) or as a native binary compiled to Rust. A solid debug story would require one of:
- Interpreted debugging — Debug Adapter Protocol talking to the VM with breakpoints mapped to Tish source lines (feasible for
tish run/ VM backend). - Native debugging — Source-level mapping from generated Rust back to Tish (heavy; needs stable line tables or DWARF-style mapping).
Recommendation: Start with (1) for development workflows; document lldb/gdb on the generated binary for advanced native debugging until (2) exists.
Tree-sitter grammar
Status: Not shipped.
A Tree-sitter grammar would enable:
- Incremental parsing in editors
- Better highlighting in Neovim/Helix/Zed
- Potential WASM playground highlighter
TextMate grammars in tish-vscode cover VS Code/Cursor today.
Playground
Status: Not shipped.
A web playground (similar to play.rust-lang.org) could compile Tish to wasm (already supported via tish compile --target wasm) and run in the browser. Needs hosting, bundling, and safety limits.
Other ideas
For current capabilities, see Language server and Editor setup.