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 Sep 8, 2024
1 parent 7007cbc commit 36b5a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/julia
Submodule julia updated 60 files
+39 −0 .editorconfig
+11 −2 .gitattributes
+56 −0 .github/ISSUE_TEMPLATE/bug_report.yml
+41 −0 .github/workflows/ci.yml
+21 −0 .github/workflows/fuzz.yml
+23 −0 .github/workflows/publish.yml
+37 −8 .gitignore
+0 −7 .npmignore
+0 −5 .travis.yml
+51 −0 CONTRIBUTING.md
+89 −0 Cargo.lock
+14 −14 Cargo.toml
+114 −0 Makefile
+60 −0 Package.swift
+19 −6 README.md
+17 −6 binding.gyp
+16 −0 bindings/c/tree-sitter-julia.h
+11 −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
+3 −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
+19 −22 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
+7 −0 go.mod
+36 −0 go.sum
+844 −522 grammar.js
+342 −0 package-lock.json
+35 −10 package.json
+29 −0 pyproject.toml
+11 −0 queries/README.md
+332 −0 queries/highlights.scm
+10 −193 script/known-failures.txt
+5 −5 script/parse-examples
+62 −0 setup.py
+6,583 −4,514 src/grammar.json
+1,529 −493 src/node-types.json
+1,315,033 −263,010 src/parser.c
+226 −92 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
+614 −0 test/corpus/definitions.txt
+542 −0 test/corpus/expressions.txt
+207 −0 test/corpus/literals.txt
+278 −0 test/corpus/operators.txt
+442 −0 test/corpus/statements.txt

0 comments on commit 36b5a4a

Please sign in to comment.