Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump third_party/tools/tree-sitter-verilog from 075ebfc to 5a01c57 #6272

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion third_party/tools/tree-sitter-verilog
Submodule tree-sitter-verilog updated 59 files
+43 −0 .editorconfig
+13 −0 .gitattributes
+8 −0 .github/dependabot.yml
+37 −19 .github/workflows/ci.yml
+26 −0 .github/workflows/lint.yml
+21 −0 .github/workflows/publish.yml
+39 −6 .gitignore
+60 −0 CMakeLists.txt
+96 −0 Cargo.lock
+15 −14 Cargo.toml
+94 −0 Makefile
+16 −0 Package.resolved
+23 −23 Package.swift
+17 −6 binding.gyp
+16 −0 bindings/c/tree-sitter-verilog.h
+11 −0 bindings/c/tree-sitter-verilog.pc.in
+12 −0 bindings/go/binding.go
+15 −0 bindings/go/binding_test.go
+14 −22 bindings/node/binding.cc
+9 −0 bindings/node/binding_test.js
+28 −0 bindings/node/index.d.ts
+3 −15 bindings/node/index.js
+11 −0 bindings/python/tests/test_binding.py
+27 −0 bindings/python/tree_sitter_verilog/__init__.py
+1 −0 bindings/python/tree_sitter_verilog/__init__.pyi
+27 −0 bindings/python/tree_sitter_verilog/binding.c
+0 −0 bindings/python/tree_sitter_verilog/py.typed
+6 −31 bindings/rust/build.rs
+22 −23 bindings/rust/lib.rs
+1 −1 bindings/swift/TreeSitterVerilog/verilog.h
+12 −0 bindings/swift/TreeSitterVerilogTests/TreeSitterVerilogTests.swift
+0 −127 cache.txt
+11 −0 eslint.config.mjs
+9 −0 go.mod
+4 −0 go.sum
+4,559 −4,554 grammar.js
+2,517 −0 package-lock.json
+40 −39 package.json
+33 −0 pyproject.toml
+61 −0 setup.py
+1 −2 src/grammar.json
+1 −339 src/node-types.json
+848,149 −848,395 src/parser.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+55 −13 src/tree_sitter/parser.h
+0 −0 test/corpus/5.6.txt
+0 −0 test/corpus/always.txt
+0 −0 test/corpus/assign.txt
+0 −0 test/corpus/comments.txt
+0 −0 test/corpus/directives.txt
+0 −0 test/corpus/function.txt
+0 −0 test/corpus/module.txt
+0 −0 test/corpus/module_instantiation.txt
+0 −0 test/corpus/net_declaration.txt
+0 −0 test/corpus/pkg.txt
+0 −0 test/corpus/tf.txt
+0 −0 test/corpus/uvm.txt
+37 −0 tree-sitter.json
Loading