Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion repos/perl
Submodule perl updated 77 files
+2 −0 .clang-format
+39 −0 .editorconfig
+11 −0 .gitattributes
+4 −4 .github/workflows/ci.yml
+0 −17 .github/workflows/fuzzing.yml
+6 −7 .github/workflows/release.yml
+0 −3 .gitignore
+15 −0 .perltidyrc
+60 −0 CMakeLists.txt
+26 −0 Cargo.toml
+4 −198 LICENSE
+110 −0 Makefile
+48 −0 Package.swift
+76 −53 README.md
+30 −0 binding.gyp
+16 −0 bindings/c/tree-sitter-perl.h
+11 −0 bindings/c/tree-sitter-perl.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
+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
+5 −0 bindings/python/tree_sitter_perl/__init__.py
+1 −0 bindings/python/tree_sitter_perl/__init__.pyi
+27 −0 bindings/python/tree_sitter_perl/binding.c
+0 −0 bindings/python/tree_sitter_perl/py.typed
+4 −2 bindings/rust/build.rs
+6 −8 bindings/rust/lib.rs
+16 −0 bindings/swift/TreeSitterPerl/perl.h
+12 −0 bindings/swift/TreeSitterPerlTests/TreeSitterPerlTests.swift
+4 −0 copy-to-release
+3 −0 cpanfile
+5 −0 go.mod
+568 −240 grammar.js
+5 −3 lib/primitives.js
+7 −0 lib/unicode_ranges.js
+30 −9 package.json
+29 −0 pyproject.toml
+8 −0 queries/folds.scm
+92 −40 queries/highlights.scm
+13 −1 queries/injections.scm
+30 −0 queries/matchup.scm
+57 −0 setup.py
+90 −0 src/bsearch.h
+9,385 −0 src/grammar.json
+559 −413 src/scanner.c
+54 −0 src/tree_sitter/alloc.h
+1,226 −0 src/tsp_unicode.h
+120 −31 test/corpus/autoquote
+151 −51 test/corpus/expressions
+187 −17 test/corpus/functions
+110 −31 test/corpus/heredocs
+233 −60 test/corpus/interpolation
+86 −40 test/corpus/literals
+157 −35 test/corpus/map-grep
+336 −52 test/corpus/operators
+21 −6 test/corpus/pod
+154 −16 test/corpus/regexp
+26 −1 test/corpus/simple
+235 −20 test/corpus/statements
+288 −20 test/corpus/subroutines
+274 −43 test/corpus/variables
+0 −0 test/highlight/builtins.pm
+11 −0 test/highlight/expressions.pm
+3 −1 test/highlight/functions.pm
+13 −0 test/highlight/interpolation.pm
+8 −6 test/highlight/operators.pm
+11 −5 test/highlight/regexp.pm
+27 −4 test/highlight/statements.pm
+5 −0 test/highlight/subroutines.pm
+30 −20 test/highlight/variables.pm
+11 −0 tree-sitter-perl.pc
+39 −0 tree-sitter.json
+96 −0 unicode_ranges.pl