Skip to content

Commit

Permalink
build(deps): bump third_party/tools/tree-sitter-verilog
Browse files Browse the repository at this point in the history
Bumps [third_party/tools/tree-sitter-verilog](https://github.com/tree-sitter/tree-sitter-verilog) from `075ebfc` to `227d277`.
- [Release notes](https://github.com/tree-sitter/tree-sitter-verilog/releases)
- [Commits](tree-sitter/tree-sitter-verilog@075ebfc...227d277)

---
updated-dependencies:
- dependency-name: third_party/tools/tree-sitter-verilog
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 11, 2024
1 parent 3b9c33a commit 32048ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/tools/tree-sitter-verilog
Submodule tree-sitter-verilog updated 59 files
+46 −0 .editorconfig
+37 −0 .gitattributes
+8 −0 .github/dependabot.yml
+37 −19 .github/workflows/ci.yml
+26 −0 .github/workflows/lint.yml
+35 −0 .github/workflows/publish.yml
+39 −6 .gitignore
+58 −0 CMakeLists.txt
+96 −0 Cargo.lock
+15 −14 Cargo.toml
+94 −0 Makefile
+16 −0 Package.resolved
+26 −23 Package.swift
+17 −6 binding.gyp
+16 −0 bindings/c/tree-sitter-verilog.h
+10 −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
+7 −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
+7 −0 go.mod
+36 −0 go.sum
+4,559 −4,554 grammar.js
+2,521 −0 package-lock.json
+42 −40 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

0 comments on commit 32048ae

Please sign in to comment.