Skip to content

Commit

Permalink
⬆️ tree-sitter for symbol deduping
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbrunsfeld committed Dec 6, 2019
1 parent dc57fe6 commit 8240213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/tree-sitter
Submodule tree-sitter updated 47 files
+1 −1 .travis.yml
+4 −4 Cargo.lock
+1 −1 cli/Cargo.toml
+1 −1 cli/npm/package.json
+7 −0 cli/src/error.rs
+4 −2 cli/src/generate/mod.rs
+287 −42 cli/src/generate/node_types.rs
+69 −12 cli/src/generate/render.rs
+1 −1 cli/src/generate/rules.rs
+16 −58 cli/src/highlight.rs
+1 −0 cli/src/lib.rs
+101 −38 cli/src/loader.rs
+29 −18 cli/src/main.rs
+305 −0 cli/src/test_highlight.rs
+7 −2 cli/src/tests/corpus_test.rs
+15 −10 cli/src/tests/helpers/fixtures.rs
+1 −1 cli/src/tests/helpers/mod.rs
+44 −50 cli/src/tests/highlight_test.rs
+1 −0 cli/src/tests/mod.rs
+60 −0 cli/src/tests/node_test.rs
+91 −0 cli/src/tests/query_test.rs
+53 −0 cli/src/tests/test_highlight_test.rs
+1 −1 docs/index.md
+2 −2 docs/section-2-using-parsers.md
+1 −1 docs/section-3-creating-parsers.md
+1 −0 docs/section-6-playground.html
+34 −37 highlight/README.md
+11 −17 highlight/src/c_lib.rs
+123 −130 highlight/src/lib.rs
+1 −1 lib/Cargo.toml
+25 −20 lib/binding_rust/bindings.rs
+3 −5 lib/binding_rust/build.rs
+0 −17 lib/binding_rust/helper.c
+342 −52 lib/binding_rust/lib.rs
+65 −2 lib/binding_rust/util.rs
+4 −2 lib/binding_web/binding.js
+1 −1 lib/binding_web/package.json
+34 −14 lib/include/tree_sitter/api.h
+1 −0 lib/include/tree_sitter/parser.h
+69 −30 lib/src/language.c
+3 −0 lib/src/language.h
+6 −4 lib/src/node.c
+143 −99 lib/src/query.c
+0 −9 lib/src/subtree.c
+9 −0 test/fixtures/test_grammars/aliased_token_rules/corpus.txt
+61 −0 test/fixtures/test_grammars/aliased_token_rules/grammar.json
+1 −0 test/fixtures/test_grammars/aliased_token_rules/readme.md

0 comments on commit 8240213

Please sign in to comment.