-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit c93c73a.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule tree-sitter-html
updated
22 files
+0 −22 | .appveyor.yml | |
+8 −0 | .github/dependabot.yml | |
+4 −4 | .github/workflows/ci.yml | |
+1 −1 | .github/workflows/fuzz.yml | |
+1 −1 | .github/workflows/lint.yml | |
+2 −2 | .github/workflows/release.yml | |
+0 −10 | .travis.yml | |
+1 −1 | Cargo.toml | |
+1 −1 | Makefile | |
+12 −2 | README.md | |
+1 −1 | bindings/rust/README.md | |
+2 −2 | grammar.js | |
+5 −2 | package.json | |
+2 −3 | src/grammar.json | |
+39 −39 | src/node-types.json | |
+303 −260 | src/parser.c | |
+94 −181 | src/scanner.c | |
+40 −39 | src/tag.h | |
+54 −0 | src/tree_sitter/alloc.h | |
+290 −0 | src/tree_sitter/array.h | |
+8 −2 | src/tree_sitter/parser.h | |
+36 −19 | test/corpus/main.txt |
Submodule tree-sitter-gritql
updated
15 files
+33 −0 | .github/workflows/pr-lint.yml | |
+1 −0 | .gitignore | |
+6 −10 | binding.gyp | |
+14 −22 | bindings/node/binding.cc | |
+28 −0 | bindings/node/index.d.ts | |
+4 −16 | bindings/node/index.js | |
+4 −3 | grammar.js | |
+15 −3 | package.json | |
+5 −2 | src/grammar.json | |
+6 −2 | src/node-types.json | |
+18,052 −17,704 | src/parser.c | |
+1 −1 | src/scanner.c | |
+54 −0 | src/tree_sitter/alloc.h | |
+290 −0 | src/tree_sitter/array.h | |
+11 −5 | src/tree_sitter/parser.h |