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 Aug 18, 2024
1 parent ac3aa50 commit ad5c218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/scala
Submodule scala updated 63 files
+39 −0 .editorconfig
+1 −0 .envrc
+5 −0 .git-blame-ignore-revs
+66 −0 .github/ISSUE_TEMPLATE/bug_report.yml
+109 −7 .github/workflows/ci.yml
+25 −0 .github/workflows/fuzz.yml
+26 −0 .github/workflows/publish.yml
+65 −0 .github/workflows/sync.yml
+7 −1 .gitignore
+3 −0 .prettierrc.json
+109 −0 CONTRIBUTING.md
+4 −4 Cargo.toml
+112 −0 Makefile
+25 −0 Package.swift
+23 −19 README.md
+8 −6 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
+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_scala/__init__.py
+1 −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
+3 −0 bindings/rust/build.rs
+4 −4 bindings/rust/lib.rs
+16 −0 bindings/swift/TreeSitterScala/scala.h
+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
+17 −0 default.nix
+2,158 −0 examples/RefChecks.scala
+1,692 −636 grammar.js
+658 −0 package-lock.json
+33 −7 package.json
+29 −0 pyproject.toml
+261 −0 queries/scala/highlights.scm
+30 −0 queries/scala/locals.scm
+87 −0 script/smoke_test.sh
+60 −0 setup.py
+6,791 −2,324 src/grammar.json
+5,700 −1,150 src/node-types.json
+808,784 −62,169 src/parser.c
+310 −74 src/scanner.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+57 −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

0 comments on commit ad5c218

Please sign in to comment.