Skip to content

Commit

Permalink
chore: Bump erlang grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 authored and github-actions[bot] committed Oct 13, 2024
1 parent 62e169d commit b88811f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/erlang
Submodule erlang updated 49 files
+39 −0 .editorconfig
+11 −0 .gitattributes
+5 −0 .github/ISSUE_TEMPLATE/config.yml
+1 −1 .github/workflows/ci.yml
+27 −1 CHANGELOG.md
+27 −0 CONTRIBUTING.md
+4 −3 Cargo.toml
+7 −1 Makefile
+49 −0 Package.swift
+9 −5 binding.gyp
+18 −0 bindings/c/tree-sitter-erlang.h
+11 −0 bindings/c/tree-sitter-erlang.pc.in
+14 −0 bindings/go/binding.go
+17 −0 bindings/go/binding_test.go
+7 −0 bindings/go/go.mod
+14 −22 bindings/node/binding.cc
+29 −0 bindings/node/index.d.ts
+4 −15 bindings/node/index.js
+5 −0 bindings/python/tree_sitter_erlang/__init__.py
+2 −0 bindings/python/tree_sitter_erlang/__init__.pyi
+29 −0 bindings/python/tree_sitter_erlang/binding.c
+0 −0 bindings/python/tree_sitter_erlang/py.typed
+24 −29 bindings/rust/build.rs
+30 −10 bindings/rust/lib.rs
+18 −0 bindings/swift/TreeSitterErlang/erlang.h
+193 −15 grammar.js
+377 −30 package-lock.json
+48 −5 package.json
+29 −0 pyproject.toml
+229 −0 queries/highlights.scm
+59 −0 setup.py
+1,363 −183 src/grammar.json
+393 −7 src/node-types.json
+36,447 −26,959 src/parser.c
+199 −0 src/scanner.c
+56 −0 src/tree_sitter/alloc.h
+292 −0 src/tree_sitter/array.h
+54 −13 src/tree_sitter/parser.h
+168 −0 test/corpus/attributes.txt
+201 −0 test/corpus/doc-attributes.txt
+297 −35 test/corpus/expr.txt
+70 −39 test/corpus/fault_tolerance.txt
+20 −0 test/corpus/macros.txt
+2 −1 test/corpus/pat_expr.txt
+560 −0 test/corpus/string_delimiters.txt
+366 −0 test/corpus/strings.txt
+189 −0 test/highlight/attributes.erl
+2,183 −0 test/highlight/compile.erl
+32 −0 test/highlight/expressions.erl

0 comments on commit b88811f

Please sign in to comment.