Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update highlight for PHP #6203

Merged
merged 1 commit into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
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 languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ indent = { tab-width = 4, unit = " " }

[[grammar]]
name = "php"
source = { git = "https://github.com/tree-sitter/tree-sitter-php", rev = "57f855461aeeca73bd4218754fb26b5ac143f98f" }
source = { git = "https://github.com/tree-sitter/tree-sitter-php", rev = "f860e598194f4a71747f91789bf536b393ad4a56" }

[[language]]
name = "twig"
Expand Down
267 changes: 227 additions & 40 deletions runtime/queries/php/highlights.scm
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,63 @@
"?>" @tag

; Types
[
(primitive_type)
(cast_type)
] @type.builtin

(named_type
[ (name) @type
(qualified_name (name) @type)])

(base_clause
[ (name) @type
(qualified_name (name) @type)])

(enum_declaration
name: (name) @type.enum)

(primitive_type) @type.builtin
(cast_type) @type.builtin
(named_type (name) @type) @type
(named_type (qualified_name) @type) @type
(interface_declaration
name: (name) @constructor)

(class_declaration
name: (name) @constructor)

(trait_declaration
name:(name) @constructor)

(namespace_definition
name: (namespace_name (name) @namespace))

(namespace_name_as_prefix
(namespace_name (name) @namespace))

(namespace_use_clause
[ (name) @namespace
(qualified_name (name) @type) ])

(namespace_aliasing_clause (name) @namespace)

(class_interface_clause
[(name) @type
(qualified_name (name) @type)])

(scoped_call_expression
scope: [(name) @type
(qualified_name (name) @type)])

(class_constant_access_expression
. [(name) @constructor
(qualified_name (name) @constructor)]
(name) @constant)

(use_declaration (name) @type)

(binary_expression
operator: "instanceof"
right: [(name) @type
(qualified_name (name) @type)])

; Superglobals
(subscript_expression
(variable_name(name) @constant.builtin
Expand All @@ -36,6 +84,21 @@
(function_definition
name: (name) @function)

(nullsafe_member_call_expression
name: (name) @function.method)

(object_creation_expression
[(name) @constructor
(qualified_name (name) @constructor)])

; Parameters
[
(simple_parameter)
(variadic_parameter)
] @variable.parameter

(argument
(name) @variable.parameter)

; Member

Expand All @@ -62,68 +125,192 @@

(variable_name) @variable

; Attributes
(attribute_list) @attribute

; Basic tokens

(string) @string
(heredoc) @string
[
(string)
(encapsed_string)
(heredoc_body)
(nowdoc_body)
(shell_command_expression)
] @string
(escape_sequence) @constant.character.escape

(boolean) @constant.builtin.boolean
(null) @constant.builtin
(integer) @constant.numeric.integer
(float) @constant.numeric.float
(comment) @comment

"$" @operator
(goto_statement (name) @label)
(named_label_statement (name) @label)

; Keywords

[
"abstract"
"as"
"break"
"case"
"catch"
"class"
"const"
"continue"
"declare"
"default"
"do"
"echo"
"else"
"elseif"
"enddeclare"
"endforeach"
"endif"
"endswitch"
"endwhile"
"enum"
"extends"
"final"
"finally"
"foreach"
"fn"
"function"
"goto"
"global"
"if"
"implements"
"include_once"
"include"
"insteadof"
"interface"
"match"
"namespace"
"new"
"private"
"protected"
"public"
] @keyword

[
"if"
"else"
"elseif"
"endif"
"switch"
"endswitch"
"case"
"match"
"declare"
"enddeclare"
"??"
] @keyword.control.conditional

[
"for"
"endfor"
"foreach"
"endforeach"
"while"
"endwhile"
"do"
] @keyword.control.repeat

[

"include_once"
"include"
"require_once"
"require"
"use"
] @keyword.control.import

[
"return"
"static"
"switch"
"break"
"continue"
"yield"
] @keyword.control.return

[
"throw"
"trait"
"try"
"use"
"while"
] @keyword
"catch"
"finally"
] @keyword.control.exception

[
"as"
"or"
"xor"
"and"
"instanceof"
] @keyword.operator

[
"fn"
"function"
] @keyword.function

[
"namespace"
"class"
"interface"
"trait"
"abstract"
] @keyword.storage.type

[
"static"
"const"
] @keyword.storage.modifier

[
","
";"
":"
"\\"
] @punctuation.delimiter

[
(php_tag)
"?>"
"("
")"
"["
"]"
"{"
"}"
"#["
] @punctuation.bracket

[
"="

"."
"-"
"*"
"/"
"+"
"%"
"**"

"~"
"|"
"^"
"&"
"<<"
">>"

"->"
"?->"

"=>"

"<"
"<="
">="
">"
"<>"
"=="
"!="
"==="
"!=="

"!"
"&&"
"||"

".="
"-="
"+="
"*="
"/="
"%="
"**="
"&="
"|="
"^="
"<<="
">>="
"??="
"--"
"++"

"@"
"::"
] @operator