-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: jcs090218 <[email protected]>
- Loading branch information
1 parent
3b018df
commit 89bcc08
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule json
updated
25 files
+5 −5 | .editorconfig | |
+1 −1 | .gitattributes | |
+1 −2 | .gitignore | |
+89 −0 | Cargo.lock | |
+6 −3 | Cargo.toml | |
+23 −19 | Makefile | |
+47 −34 | Package.swift | |
+11 −2 | binding.gyp | |
+1 −1 | bindings/go/binding_test.go | |
+1 −1 | bindings/node/binding.cc | |
+9 −0 | bindings/node/binding_test.js | |
+11 −0 | bindings/python/tests/test_binding.py | |
+28 −2 | bindings/python/tree_sitter_json/__init__.py | |
+5 −1 | bindings/python/tree_sitter_json/__init__.pyi | |
+2 −2 | bindings/python/tree_sitter_json/binding.c | |
+13 −12 | bindings/rust/lib.rs | |
+12 −0 | bindings/swift/TreeSitterJSONTests/TreeSitterJsonTests.swift | |
+6 −2 | go.mod | |
+34 −0 | go.sum | |
+44 −57 | package-lock.json | |
+8 −11 | package.json | |
+3 −3 | pyproject.toml | |
+11 −6 | setup.py | |
+138 −138 | src/parser.c | |
+1 −0 | src/tree_sitter/parser.h |