Skip to content

Commit

Permalink
chore: Bump julia grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 authored and github-actions[bot] committed Dec 15, 2024
1 parent a40c676 commit 8202c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/julia
Submodule julia updated 64 files
+46 −0 .editorconfig
+37 −2 .gitattributes
+56 −0 .github/ISSUE_TEMPLATE/bug_report.yml
+44 −0 .github/workflows/ci.yml
+19 −0 .github/workflows/fuzz.yml
+35 −0 .github/workflows/publish.yml
+40 −8 .gitignore
+0 −7 .npmignore
+0 −5 .travis.yml
+58 −0 CMakeLists.txt
+68 −0 CONTRIBUTING.md
+96 −0 Cargo.lock
+15 −14 Cargo.toml
+94 −0 Makefile
+16 −0 Package.resolved
+37 −0 Package.swift
+20 −6 README.md
+17 −6 binding.gyp
+16 −0 bindings/c/tree-sitter-julia.h
+10 −0 bindings/c/tree-sitter-julia.pc.in
+13 −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_julia/__init__.py
+1 −0 bindings/python/tree_sitter_julia/__init__.pyi
+27 −0 bindings/python/tree_sitter_julia/binding.c
+0 −0 bindings/python/tree_sitter_julia/py.typed
+11 −8 bindings/rust/build.rs
+21 −24 bindings/rust/lib.rs
+16 −0 bindings/swift/TreeSitterJulia/julia.h
+12 −0 bindings/swift/TreeSitterJuliaTests/TreeSitterJuliaTests.swift
+0 −197 corpus/definitions.txt
+0 −499 corpus/expressions.txt
+0 −240 corpus/statements.txt
+5 −0 eslint.config.mjs
+7 −0 go.mod
+36 −0 go.sum
+911 −548 grammar.js
+1,478 −0 package-lock.json
+39 −16 package.json
+30 −0 pyproject.toml
+327 −0 queries/highlights.scm
+80 −0 queries/locals.scm
+10 −193 script/known-failures.txt
+5 −5 script/parse-examples
+62 −0 setup.py
+6,664 −4,725 src/grammar.json
+1,700 −641 src/node-types.json
+1,498,771 −268,891 src/parser.c
+165 −96 src/scanner.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+58 −15 src/tree_sitter/parser.h
+195 −0 test/corpus/collections.txt
+655 −0 test/corpus/definitions.txt
+549 −0 test/corpus/expressions.txt
+218 −0 test/corpus/literals.txt
+278 −0 test/corpus/operators.txt
+453 −0 test/corpus/statements.txt
+36 −0 tree-sitter.json

0 comments on commit 8202c43

Please sign in to comment.