Expand description
TypeScript language adapter for sdivi-rust.
Implements sdivi_parsing::adapter::LanguageAdapter for .ts and .tsx
source files using the tree-sitter-typescript grammar.
§Thread safety
tree_sitter::Parser is not Send. Parsers are stored in thread_local!
storage so that TypeScriptAdapter itself can be Send + Sync and
participate in rayon parallel parsing.
Structs§
- Type
Script Adapter - Language adapter for TypeScript source files (
.tsand.tsx).