-
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.
chore: Bump javascript grammar (#808)
Co-authored-by: jcs090218 <[email protected]>
- Loading branch information
1 parent
6346a0e
commit 1651efc
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule javascript
updated
31 files
+9 −5 | .editorconfig | |
+2 −0 | .gitattributes | |
+11 −1 | .github/workflows/ci.yml | |
+0 −2 | .github/workflows/fuzz.yml | |
+2 −4 | .github/workflows/publish.yml | |
+5 −1 | .gitignore | |
+60 −0 | CMakeLists.txt | |
+11 −4 | Cargo.lock | |
+5 −5 | Cargo.toml | |
+13 −33 | Makefile | |
+6 −29 | Package.swift | |
+11 −2 | binding.gyp | |
+8 −8 | bindings/c/tree-sitter-javascript.pc.in | |
+1 −1 | bindings/go/binding_test.go | |
+1 −1 | bindings/python/tests/test_binding.py | |
+37 −2 | bindings/python/tree_sitter_javascript/__init__.py | |
+8 −1 | bindings/python/tree_sitter_javascript/__init__.pyi | |
+7 −7 | bindings/rust/lib.rs | |
+0 −0 | bindings/swift/TreeSitterJavaScript/javascript.h | |
+3 −3 | bindings/swift/TreeSitterJavaScriptTests/TreeSitterJavaScriptTests.swift | |
+5 −0 | eslint.config.mjs | |
+1 −1 | go.mod | |
+2 −0 | go.sum | |
+345 −326 | package-lock.json | |
+9 −25 | package.json | |
+2 −2 | pyproject.toml | |
+11 −6 | setup.py | |
+1 −0 | src/grammar.json | |
+1 −0 | src/node-types.json | |
+4 −4 | src/tree_sitter/alloc.h | |
+51 −0 | tree-sitter.json |