-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
Submodule tree-sitter-c-sharp
updated
8 files
+1 −0 | .github/workflows/ci.yml | |
+1 −1 | Cargo.toml | |
+1 −1 | Makefile | |
+2 −2 | package-lock.json | |
+1 −1 | package.json | |
+1 −1 | pyproject.toml | |
+528,537 −528,538 | src/parser.c | |
+1 −1 | src/scanner.c |
Submodule tree-sitter-ocaml
updated
28 files
+3 −2 | .gitattributes | |
+2 −1 | .github/workflows/ci.yml | |
+6 −9 | Cargo.toml | |
+2 −2 | Makefile | |
+1 −2 | Package.swift | |
+1 −1 | binding.gyp | |
+1 −1 | bindings/go/binding_interface.go | |
+1 −1 | bindings/go/binding_ocaml.go | |
+1 −1 | bindings/go/binding_type.go | |
+3 −3 | bindings/rust/build.rs | |
+0 −0 | common/scanner.h | |
+1 −1 | grammars/interface/src/scanner.c | |
+0 −1 | grammars/interface/src/tree_sitter | |
+0 −0 | grammars/interface/src/tree_sitter/alloc.h | |
+0 −0 | grammars/interface/src/tree_sitter/array.h | |
+0 −0 | grammars/interface/src/tree_sitter/parser.h | |
+1 −1 | grammars/ocaml/src/scanner.c | |
+0 −1 | grammars/ocaml/src/tree_sitter | |
+54 −0 | grammars/ocaml/src/tree_sitter/alloc.h | |
+290 −0 | grammars/ocaml/src/tree_sitter/array.h | |
+230 −0 | grammars/ocaml/src/tree_sitter/parser.h | |
+1 −1 | grammars/type/src/scanner.c | |
+0 −1 | grammars/type/src/tree_sitter | |
+54 −0 | grammars/type/src/tree_sitter/alloc.h | |
+290 −0 | grammars/type/src/tree_sitter/array.h | |
+230 −0 | grammars/type/src/tree_sitter/parser.h | |
+7 −7 | package.json | |
+1 −1 | setup.py |
Submodule tree-sitter-php
updated
14 files
+1 −1 | .github/workflows/fuzz.yml | |
+1 −1 | Cargo.toml | |
+1 −1 | common/common.mak | |
+5 −5 | common/define-grammar.js | |
+37 −37 | package-lock.json | |
+1 −1 | package.json | |
+55 −35 | php/src/grammar.json | |
+53 −18 | php/src/node-types.json | |
+93,261 −83,368 | php/src/parser.c | |
+55 −35 | php_only/src/grammar.json | |
+53 −18 | php_only/src/node-types.json | |
+91,357 −81,785 | php_only/src/parser.c | |
+1 −1 | pyproject.toml | |
+28 −8 | test/corpus/statements.txt |
Submodule tree-sitter-python
updated
8 files
+1 −1 | Makefile | |
+3 −0 | bindings/rust/build.rs | |
+1 −1 | grammar.js | |
+1 −1 | src/grammar.json | |
+4,391 −6,818 | src/parser.c | |
+6 −3 | src/tree_sitter/array.h | |
+43 −8 | src/tree_sitter/parser.h | |
+3 −1 | test/corpus/literals.txt |
Submodule tree-sitter-typescript
updated
15 files
+2 −2 | Cargo.toml | |
+23 −3 | Package.swift | |
+5 −1 | bindings/rust/lib.rs | |
+1 −1 | common/common.mak | |
+157 −155 | common/define-grammar.js | |
+6 −6 | package-lock.json | |
+2 −2 | package.json | |
+1 −1 | pyproject.toml | |
+75 −1 | test/corpus/types.txt | |
+167 −203 | tsx/src/grammar.json | |
+183 −660 | tsx/src/node-types.json | |
+235,098 −346,798 | tsx/src/parser.c | |
+163 −203 | typescript/src/grammar.json | |
+185 −662 | typescript/src/node-types.json | |
+237,179 −351,759 | typescript/src/parser.c |
Submodule tree-sitter-typescript
updated
15 files
+2 −2 | Cargo.toml | |
+23 −3 | Package.swift | |
+5 −1 | bindings/rust/lib.rs | |
+1 −1 | common/common.mak | |
+157 −155 | common/define-grammar.js | |
+6 −6 | package-lock.json | |
+2 −2 | package.json | |
+1 −1 | pyproject.toml | |
+75 −1 | test/corpus/types.txt | |
+167 −203 | tsx/src/grammar.json | |
+183 −660 | tsx/src/node-types.json | |
+235,098 −346,798 | tsx/src/parser.c | |
+163 −203 | typescript/src/grammar.json | |
+185 −662 | typescript/src/node-types.json | |
+237,179 −351,759 | typescript/src/parser.c |
Submodule tree-sitter
updated
14 files
+51 −270 | Cargo.lock | |
+8 −8 | Cargo.toml | |
+1 −1 | cli/Cargo.toml | |
+12 −3 | cli/loader/src/lib.rs | |
+13 −2 | cli/npm/install.js | |
+5 −1 | cli/src/generate/dsl.js | |
+33 −10 | cli/src/tests/query_test.rs | |
+4 −0 | docs/section-3-creating-parsers.md | |
+1 −1 | docs/section-4-syntax-highlighting.md | |
+4 −0 | lib/binding_rust/bindings.rs | |
+15 −0 | lib/binding_rust/lib.rs | |
+8 −0 | lib/include/tree_sitter/api.h | |
+5 −1 | lib/src/parser.c | |
+10 −1 | lib/src/query.c |