Skip to content

Commit

Permalink
Updates to Tree-sitter 0.20.7 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs authored Nov 6, 2022
1 parent 12e77da commit bc2083b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tree-sitter
Submodule tree-sitter updated 47 files
+2 −2 Cargo.lock
+2 −2 cli/Cargo.toml
+8 −7 cli/config/src/lib.rs
+20 −1 cli/npm/install.js
+1 −1 cli/npm/package.json
+4 −4 cli/src/generate/build_tables/build_parse_table.rs
+12 −0 cli/src/generate/prepare_grammar/extract_default_aliases.rs
+1 −1 cli/src/generate/rules.rs
+1 −1 cli/src/main.rs
+13 −2 cli/src/playground.rs
+18 −1 cli/src/tests/corpus_test.rs
+1 −1 cli/src/tests/helpers/scope_sequence.rs
+10 −9 cli/src/tests/highlight_test.rs
+28 −0 cli/src/tests/node_test.rs
+1 −1 cli/src/tests/parser_test.rs
+214 −1 cli/src/tests/query_test.rs
+68 −25 cli/src/tests/tree_test.rs
+3 −0 docs/index.md
+1 −1 docs/section-2-using-parsers.md
+1 −1 highlight/src/lib.rs
+1 −1 lib/Cargo.toml
+12 −0 lib/binding_rust/bindings.rs
+116 −3 lib/binding_rust/lib.rs
+44 −0 lib/binding_web/README.md
+0 −1 lib/binding_web/exports.json
+1 −1 lib/binding_web/package.json
+15 −0 lib/include/tree_sitter/api.h
+25 −0 lib/src/language.h
+8 −0 lib/src/length.h
+4 −0 lib/src/node.c
+61 −35 lib/src/parser.c
+49 −25 lib/src/query.c
+3 −6 lib/src/stack.c
+48 −50 lib/src/subtree.c
+10 −2 lib/src/subtree.h
+10 −0 lib/src/tree.c
+1 −0 script/build-wasm
+3 −3 script/fetch-emscripten
+5 −4 script/test
+1 −1 script/version
+4 −4 tags/src/c_lib.rs
+1 −1 tags/src/lib.rs
+94 −12 test/fixtures/error_corpus/python_errors.txt
+2 −1 test/fixtures/test_grammars/aliased_rules/corpus.txt
+15 −3 test/fixtures/test_grammars/aliased_rules/grammar.js
+1 −1 test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/grammar.js
+1 −1 test/fixtures/test_grammars/readme_grammar/grammar.json

0 comments on commit bc2083b

Please sign in to comment.