Skip to content

Commit

Permalink
Bump tree-sitter library
Browse files Browse the repository at this point in the history
Fixes #61
  • Loading branch information
maxbrunsfeld committed Apr 3, 2020
1 parent a663107 commit 3f8dcb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/tree-sitter
Submodule tree-sitter updated 76 files
+18 −25 Cargo.lock
+5 −1 cli/Cargo.toml
+1 −2 cli/benches/benchmark.rs
+1 −1 cli/npm/package.json
+6 −0 cli/src/error.rs
+1 −0 cli/src/generate/build_tables/mod.rs
+34 −7 cli/src/generate/build_tables/token_conflicts.rs
+30 −7 cli/src/generate/grammar-schema.json
+155 −163 cli/src/generate/node_types.rs
+32 −22 cli/src/generate/render.rs
+11 −0 cli/src/generate/rules.rs
+22 −21 cli/src/highlight.rs
+1 −0 cli/src/lib.rs
+55 −26 cli/src/loader.rs
+45 −15 cli/src/main.rs
+19 −7 cli/src/query.rs
+66 −0 cli/src/tags.rs
+1 −0 cli/src/tests/corpus_test.rs
+6 −2 cli/src/tests/helpers/fixtures.rs
+77 −9 cli/src/tests/highlight_test.rs
+1 −0 cli/src/tests/mod.rs
+0 −62 cli/src/tests/node_refs.rs
+13 −0 cli/src/tests/node_test.rs
+182 −105 cli/src/tests/parser_test.rs
+429 −4 cli/src/tests/query_test.rs
+347 −0 cli/src/tests/tags_test.rs
+4 −4 cli/src/tests/test_highlight_test.rs
+18 −1 cli/src/util.rs
+1 −0 cli/src/web_ui.html
+45 −16 cli/src/web_ui.rs
+3 −3 docs/Gemfile.lock
+2 −1 docs/_layouts/default.html
+21 −0 docs/assets/css/style.scss
+154 −1 docs/section-2-using-parsers.md
+17 −5 docs/section-3-creating-parsers.md
+421 −0 docs/section-4-syntax-highlighting.md
+0 −0 docs/section-5-implementation.md
+0 −0 docs/section-6-contributing.md
+2 −0 docs/section-7-playground.html
+0 −3 highlight/Cargo.toml
+8 −2 highlight/src/c_lib.rs
+295 −214 highlight/src/lib.rs
+1 −4 lib/Cargo.toml
+6 −0 lib/binding_rust/README.md
+28 −11 lib/binding_rust/bindings.rs
+187 −62 lib/binding_rust/lib.rs
+1 −0 lib/binding_web/.gitignore
+8 −3 lib/binding_web/binding.js
+1 −1 lib/binding_web/package.json
+9 −6 lib/binding_web/test/parser-test.js
+25 −12 lib/include/tree_sitter/api.h
+22 −6 lib/src/array.h
+2 −2 lib/src/atomic.h
+1 −1 lib/src/bits.h
+4 −2 lib/src/language.c
+8 −6 lib/src/language.h
+12 −1 lib/src/lexer.c
+1 −1 lib/src/lexer.h
+3 −1 lib/src/node.c
+21 −54 lib/src/parser.c
+431 −160 lib/src/query.c
+1 −1 lib/src/stack.c
+3 −10 lib/src/subtree.c
+4 −0 lib/src/subtree.h
+8 −11 script/build-fuzzers
+1 −1 script/build-lib
+2 −0 script/fetch-fixtures
+2 −0 script/fetch-fixtures.cmd
+1 −0 script/serve-docs
+25 −0 tags/Cargo.toml
+60 −0 tags/README.md
+96 −0 tags/include/tree_sitter/tags.h
+245 −0 tags/src/c_lib.rs
+499 −0 tags/src/lib.rs
+3 −2 test/fixtures/error_corpus/javascript_errors.txt
+0 −2 test/fuzz/fuzzer.cc

0 comments on commit 3f8dcb2

Please sign in to comment.