tree-sitter/lib
Max Brunsfeld 0e445c47fa rust: Parser and QueryCursor are Sync
These objects are not generally intended to be shared betwen threads,
but they meet the Rust definition of Sync: all of their methods are
that take a shared reference to `self` are safe to call from multiple
threads simultaneously. In other words, there is no interior
mutability.
2021-05-21 21:14:24 -07:00
..
binding_rust rust: Parser and QueryCursor are Sync 2021-05-21 21:14:24 -07:00
binding_web Remove stray entry from wasm exported-symbol list 2021-05-20 14:33:25 -07:00
include/tree_sitter Changing API name; Adding unit test and Rust bindings 2021-05-21 01:50:10 +00:00
src Merge branch 'nhasabni/ts_node_child_field_name' of https://github.com/nhasabni/tree-sitter into nhasabni/ts_node_child_field_name 2021-05-20 23:37:03 +00:00
.ccls rust: Change QueryCursor::captures to expose the full match 2019-10-03 12:45:58 -07:00
Cargo.toml rust: 0.19.5 2021-05-20 14:29:25 -07:00
README.md lib: remove utf8proc dependency (#436) 2019-10-14 11:18:39 -07:00

Subdirectories

  • src - C source code for the Tree-sitter library
  • include - C headers for the Tree-sitter library
  • binding_rust - Rust bindings to the Tree-sitter library
  • binding_web - JavaScript bindings to the Tree-sitter library, using WebAssembly