Skip to content

Commit

Permalink
⬆️ tree-sitter lib to 0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbrunsfeld committed Mar 8, 2021
1 parent 738bb12 commit c5f3dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/tree-sitter
Submodule tree-sitter updated 72 files
+2 −0 .gitignore
+332 −466 Cargo.lock
+10 −10 cli/Cargo.toml
+20 −7 cli/npm/dsl.d.ts
+14 −7 cli/npm/install.js
+1 −1 cli/npm/package.json
+0 −40 cli/src/allocations_stubs.rs
+13 −0 cli/src/error.rs
+121 −0 cli/src/generate/binding_files.rs
+168 −79 cli/src/generate/build_tables/build_parse_table.rs
+61 −23 cli/src/generate/build_tables/item.rs
+3 −10 cli/src/generate/build_tables/item_set_builder.rs
+2 −2 cli/src/generate/build_tables/token_conflicts.rs
+20 −2 cli/src/generate/dsl.js
+30 −4 cli/src/generate/grammars.rs
+2 −33 cli/src/generate/mod.rs
+91 −0 cli/src/generate/nfa.rs
+49 −39 cli/src/generate/node_types.rs
+0 −18 cli/src/generate/npm_files.rs
+65 −32 cli/src/generate/parse_grammar.rs
+2 −1 cli/src/generate/prepare_grammar/expand_repeats.rs
+23 −12 cli/src/generate/prepare_grammar/expand_tokens.rs
+6 −5 cli/src/generate/prepare_grammar/extract_default_aliases.rs
+3 −1 cli/src/generate/prepare_grammar/extract_tokens.rs
+30 −20 cli/src/generate/prepare_grammar/flatten_grammar.rs
+3 −1 cli/src/generate/prepare_grammar/intern_symbols.rs
+198 −5 cli/src/generate/prepare_grammar/mod.rs
+23 −20 cli/src/generate/prepare_grammar/process_inlines.rs
+61 −60 cli/src/generate/render.rs
+55 −14 cli/src/generate/rules.rs
+1 −13 cli/src/generate/tables.rs
+2 −1 cli/src/generate/templates/binding.gyp
+40 −0 cli/src/generate/templates/build.rs
+26 −0 cli/src/generate/templates/cargo.toml
+12 −10 cli/src/generate/templates/index.js
+52 −0 cli/src/generate/templates/lib.rs
+19 −0 cli/src/generate/templates/package.json
+120 −24 cli/src/highlight.rs
+0 −3 cli/src/lib.rs
+1 −1 cli/src/loader.rs
+16 −11 cli/src/test.rs
+14 −3 cli/src/tests/corpus_test.rs
+0 −1 cli/src/tests/helpers/mod.rs
+1 −1 cli/src/tests/helpers/random.rs
+1 −2 cli/src/tests/parser_test.rs
+1 −2 cli/src/tests/pathological_test.rs
+213 −4 cli/src/tests/query_test.rs
+1 −2 cli/src/tests/tags_test.rs
+1 −0 docs/index.md
+1 −1 docs/section-3-creating-parsers.md
+1 −1 highlight/Cargo.toml
+5 −2 lib/Cargo.toml
+9 −9 lib/binding_rust/allocations.rs
+15 −5 lib/binding_rust/bindings.rs
+9 −0 lib/binding_rust/lib.rs
+8 −10 lib/binding_rust/util.rs
+6 −4 lib/binding_web/binding.js
+1 −1 lib/binding_web/package.json
+26 −0 lib/binding_web/test/query-test.js
+13 −2 lib/include/tree_sitter/api.h
+72 −87 lib/include/tree_sitter/parser.h
+3 −15 lib/src/language.c
+12 −26 lib/src/language.h
+14 −18 lib/src/parser.c
+32 −50 lib/src/query.c
+6 −8 lib/src/tree_cursor.c
+1 −1 script/fetch-fixtures
+1 −1 script/fetch-fixtures.cmd
+1 −1 tags/Cargo.toml
+12 −0 test/fixtures/test_grammars/named_precedences/corpus.txt
+159 −0 test/fixtures/test_grammars/named_precedences/grammar.json
+3 −0 test/fixtures/test_grammars/named_precedences/readme.txt

0 comments on commit c5f3dff

Please sign in to comment.