Skip to content

Commit

Permalink
chore: Bump verilog grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 authored and github-actions[bot] committed Oct 20, 2024
1 parent 62e169d commit 9a690a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/verilog
Submodule 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

0 comments on commit 9a690a4

Please sign in to comment.