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 Jul 28, 2024
1 parent 0e60350 commit 12886bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/julia
Submodule julia updated 47 files
+39 −0 .editorconfig
+56 −0 .github/ISSUE_TEMPLATE/bug_report.yml
+41 −0 .github/workflows/ci.yml
+1 −0 .gitignore
+0 −5 .travis.yml
+51 −0 CONTRIBUTING.md
+4 −4 Cargo.toml
+111 −0 Makefile
+33 −0 Package.swift
+17 −6 README.md
+7 −5 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
+5 −0 bindings/go/go.mod
+14 −22 bindings/node/binding.cc
+28 −0 bindings/node/index.d.ts
+3 −15 bindings/node/index.js
+5 −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
+3 −0 bindings/rust/build.rs
+16 −0 bindings/swift/TreeSitterJulia/julia.h
+0 −197 corpus/definitions.txt
+0 −499 corpus/expressions.txt
+0 −240 corpus/statements.txt
+844 −522 grammar.js
+26 −10 package.json
+29 −0 pyproject.toml
+10 −193 script/known-failures.txt
+5 −5 script/parse-examples
+57 −0 setup.py
+6,583 −4,514 src/grammar.json
+1,529 −493 src/node-types.json
+1,315,584 −263,536 src/parser.c
+225 −92 src/scanner.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+57 −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 12886bd

Please sign in to comment.