Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -366,12 +366,6 @@
branch = main
update = none
ignore = dirty
[submodule "repos/xml"]
path = repos/xml
url = https://github.com/tree-sitter-grammars/tree-sitter-xml
branch = master
update = none
ignore = dirty
[submodule "repos/jsonnet"]
path = repos/jsonnet
url = https://github.com/sourcegraph/tree-sitter-jsonnet
Expand Down Expand Up @@ -624,3 +618,9 @@
update = none
ignore = dirty
branch = main
[submodule "repos/xml"]
path = repos/xml
url = https://github.com/tree-sitter-grammars/tree-sitter-xml
update = none
ignore = dirty
branch = master
2 changes: 1 addition & 1 deletion repos/xml
Submodule xml updated 83 files
+35 −5 .editorconfig
+34 −2 .gitattributes
+22 −41 .github/workflows/ci.yml
+34 −0 .github/workflows/fuzz.yml
+14 −2 .github/workflows/publish.yml
+36 −4 .gitignore
+63 −0 CMakeLists.txt
+96 −0 Cargo.lock
+13 −8 Cargo.toml
+10 −0 Makefile
+16 −0 Package.resolved
+52 −0 Package.swift
+3 −1 README.md
+15 −9 binding.gyp
+16 −0 bindings/c/tree-sitter-dtd.h
+10 −0 bindings/c/tree-sitter-dtd.pc.in
+16 −0 bindings/c/tree-sitter-xml.h
+10 −0 bindings/c/tree-sitter-xml.pc.in
+22 −0 bindings/go/binding_test.go
+14 −0 bindings/go/dtd.go
+14 −0 bindings/go/xml.go
+29 −35 bindings/node/binding.cc
+14 −0 bindings/node/binding_test.js
+29 −0 bindings/node/index.d.ts
+5 −17 bindings/node/index.js
+17 −0 bindings/python/tests/test_binding.py
+5 −0 bindings/python/tree_sitter_xml/__init__.py
+3 −0 bindings/python/tree_sitter_xml/__init__.pyi
+34 −0 bindings/python/tree_sitter_xml/binding.c
+0 −0 bindings/python/tree_sitter_xml/py.typed
+10 −6 bindings/rust/build.rs
+29 −36 bindings/rust/lib.rs
+20 −0 bindings/swift/TreeSitterXMLTests/TreeSitterXMLTests.swift
+16 −0 bindings/swift/dtd/TreeSitterDTD/dtd.h
+16 −0 bindings/swift/xml/TreeSitterXML/xml.h
+90 −0 common/common.mak
+375 −0 common/common.mjs
+0 −68 common/index.js
+51 −48 common/scanner.h
+3 −0 dtd/CMakeLists.txt
+4 −0 dtd/Makefile
+21 −296 dtd/grammar.js
+8 −1 dtd/package.json
+250 −131 dtd/src/grammar.json
+20 −15 dtd/src/node-types.json
+3,160 −2,737 dtd/src/parser.c
+32 −5 dtd/src/scanner.c
+54 −0 dtd/src/tree_sitter/alloc.h
+290 −0 dtd/src/tree_sitter/array.h
+44 −8 dtd/src/tree_sitter/parser.h
+0 −68 dtd/test/corpus/examples.txt
+0 −1 examples/.gitignore
+7 −0 go.mod
+36 −0 go.sum
+0 −13 jsconfig.json
+348 −21 package-lock.json
+41 −49 package.json
+34 −0 pyproject.toml
+13 −6 queries/dtd/highlights.scm
+17 −20 queries/xml/highlights.scm
+0 −49 scripts.js
+74 −0 setup.py
+26 −66 test/corpus/errors.txt
+75 −0 test/corpus/examples.txt
+4 −0 test/corpus/extra.txt
+304 −0 test/corpus/issues.txt
+139 −5 test/corpus/standard.txt
+18 −0 test/highlight/test.dtd
+15 −0 test/highlight/test.xml
+55 −0 tree-sitter.json
+3 −0 xml/CMakeLists.txt
+4 −0 xml/Makefile
+39 −11 xml/grammar.js
+8 −1 xml/package.json
+1,738 −1,622 xml/src/grammar.json
+5 −8 xml/src/node-types.json
+5,447 −4,813 xml/src/parser.c
+202 −13 xml/src/scanner.c
+54 −0 xml/src/tree_sitter/alloc.h
+290 −0 xml/src/tree_sitter/array.h
+44 −8 xml/src/tree_sitter/parser.h
+0 −23 xml/test/corpus/issues.txt
+0 −117 xml/test/corpus/standard.txt
Loading