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 Dec 8, 2024
1 parent c54f7ae commit 35afec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/erlang
Submodule erlang updated 52 files
+39 −0 .editorconfig
+11 −0 .gitattributes
+5 −0 .github/ISSUE_TEMPLATE/config.yml
+1 −1 .github/workflows/ci.yml
+30 −1 CHANGELOG.md
+27 −0 CONTRIBUTING.md
+7 −3 Cargo.toml
+8 −3 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
+16 −0 bindings/go/binding_test.go
+14 −22 bindings/node/binding.cc
+11 −0 bindings/node/binding_test.js
+29 −0 bindings/node/index.d.ts
+4 −15 bindings/node/index.js
+13 −0 bindings/python/tests/test_binding.py
+5 −0 bindings/python/tree_sitter_erlang/__init__.py
+2 −0 bindings/python/tree_sitter_erlang/__init__.pyi
+30 −0 bindings/python/tree_sitter_erlang/binding.c
+0 −0 bindings/python/tree_sitter_erlang/py.typed
+10 −29 bindings/rust/build.rs
+23 −23 bindings/rust/lib.rs
+18 −0 bindings/swift/TreeSitterErlang/erlang.h
+13 −0 bindings/swift/TreeSitterErlangTests/TreeSitterErlangTests.swift
+6 −0 go.mod
+193 −15 grammar.js
+380 −30 package-lock.json
+48 −7 package.json
+29 −0 pyproject.toml
+229 −0 queries/highlights.scm
+62 −0 setup.py
+1,363 −183 src/grammar.json
+393 −7 src/node-types.json
+36,377 −26,889 src/parser.c
+199 −0 src/scanner.c
+56 −0 src/tree_sitter/alloc.h
+292 −0 src/tree_sitter/array.h
+55 −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 35afec0

Please sign in to comment.