feat: add the php_only parser included in tree-sitter-php (#5876)

Add parser  `php_only` for PHP files without HTML embedded.
Make queries for combined parser `php` inherit from `php_only` (no extensions needed).

---------

Co-authored-by: shirasaka <tk.shirasaka@gmail>
This commit is contained in:
tk-shirasaka 2024-01-20 21:34:49 +09:00 committed by GitHub
parent a8fa3047b5
commit 64b3d5e569
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 574 additions and 557 deletions

View file

@ -1,38 +1 @@
[
(array_creation_expression)
(compound_statement)
(declaration_list)
(binary_expression)
(return_statement)
(arguments)
(formal_parameters)
(enum_declaration_list)
(switch_block)
(match_block)
(case_statement)
] @indent.begin
[
")"
"}"
"]"
] @indent.branch
(comment) @indent.auto
(compound_statement
"}" @indent.end)
(ERROR
"(" @indent.align
.
(_)
(#set! indent.open_delimiter "(")
(#set! indent.close_delimiter ")"))
(ERROR
"[" @indent.align
.
(_)
(#set! indent.open_delimiter "[")
(#set! indent.close_delimiter "]"))
; inherits: php_only