Skip to content

Commit

Permalink
chore: Bump scala grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 authored and github-actions[bot] committed Nov 3, 2024
1 parent 562e468 commit fd9f40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/scala
Submodule scala updated 72 files
+43 −0 .editorconfig
+1 −0 .envrc
+5 −0 .git-blame-ignore-revs
+13 −2 .gitattributes
+66 −0 .github/ISSUE_TEMPLATE/bug_report.yml
+126 −7 .github/workflows/ci.yml
+19 −0 .github/workflows/fuzz.yml
+26 −0 .github/workflows/publish.yml
+68 −0 .github/workflows/sync.yml
+40 −9 .gitignore
+0 −3 .npmignore
+60 −0 CMakeLists.txt
+109 −0 CONTRIBUTING.md
+96 −0 Cargo.lock
+15 −14 Cargo.toml
+94 −0 Makefile
+16 −0 Package.resolved
+37 −0 Package.swift
+23 −19 README.md
+18 −7 binding.gyp
+16 −0 bindings/c/tree-sitter-scala.h
+11 −0 bindings/c/tree-sitter-scala.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
+34 −0 bindings/python/tree_sitter_scala/__init__.py
+6 −0 bindings/python/tree_sitter_scala/__init__.pyi
+27 −0 bindings/python/tree_sitter_scala/binding.c
+0 −0 bindings/python/tree_sitter_scala/py.typed
+11 −8 bindings/rust/build.rs
+29 −22 bindings/rust/lib.rs
+16 −0 bindings/swift/TreeSitterScala/scala.h
+12 −0 bindings/swift/TreeSitterScalaTests/TreeSitterScalaTests.swift
+0 −422 corpus/definitions.txt
+0 −326 corpus/expressions.txt
+0 −66 corpus/literals.txt
+0 −159 corpus/patterns.txt
+0 −252 corpus/types.txt
+2,158 −0 examples/RefChecks.scala
+7 −0 go.mod
+38 −0 go.sum
+1,690 −636 grammar.js
+349 −0 package-lock.json
+29 −17 package.json
+30 −0 pyproject.toml
+260 −0 queries/highlights.scm
+30 −0 queries/indents.scm
+30 −0 queries/locals.scm
+87 −0 script/smoke_test.sh
+62 −0 setup.py
+6,792 −2,324 src/grammar.json
+5,583 −1,119 src/node-types.json
+808,994 −62,249 src/parser.c
+312 −74 src/scanner.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+58 −15 src/tree_sitter/parser.h
+0 −0 test/corpus/annotations.txt
+102 −0 test/corpus/comments.txt
+1,783 −0 test/corpus/definitions.txt
+1,805 −0 test/corpus/expressions.txt
+297 −0 test/corpus/literals.txt
+334 −0 test/corpus/patterns.txt
+657 −0 test/corpus/types.txt
+94 −0 test/highlight/basics.scala
+12 −0 test/highlight/comments.scala
+159 −0 test/highlight/scala3.scala
+38 −0 tree-sitter.json

0 comments on commit fd9f40a

Please sign in to comment.