-
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.
- Loading branch information
1 parent
213b1c4
commit 20b9c00
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule sql
updated
26 files
+16 −7 | .github/workflows/ci.yml | |
+60 −0 | CMakeLists.txt | |
+14 −13 | Cargo.toml | |
+29 −26 | Package.swift | |
+8 −8 | bindings/c/tree-sitter-sql.pc.in | |
+2 −2 | bindings/go/binding_test.go | |
+0 −5 | bindings/go/go.mod | |
+1 −1 | bindings/node/binding.cc | |
+9 −0 | bindings/node/binding_test.js | |
+11 −0 | bindings/python/tests/test_binding.py | |
+39 −2 | bindings/python/tree_sitter_sql/__init__.py | |
+10 −1 | bindings/python/tree_sitter_sql/__init__.pyi | |
+2 −2 | bindings/python/tree_sitter_sql/binding.c | |
+5 −9 | bindings/rust/build.rs | |
+22 −21 | bindings/rust/lib.rs | |
+1 −1 | bindings/swift/TreeSitterSql/sql.h | |
+12 −0 | bindings/swift/TreeSitterSqlTests/TreeSitterSqlTests.swift | |
+5 −0 | go.mod | |
+31 −19 | grammar.js | |
+10 −6 | package-lock.json | |
+10 −22 | package.json | |
+7 −6 | pyproject.toml | |
+1 −7 | queries/highlights.scm | |
+2 −2 | src/scanner.c | |
+67 −3 | test/corpus/insert.txt | |
+37 −0 | tree-sitter.json |