feat(qmljs): boolean

boolean is not in the right color, so fix it

Log: fix the color of boolean for qmljs
This commit is contained in:
ShootingStarDragons 2022-09-03 09:45:57 +08:00 committed by Stephan Seitz
parent c398cbc8f5
commit 73cd1f189b

View file

@ -72,7 +72,7 @@
;;; function
(call_expression
function: (member_expression
object: (identifier) @variable
object: (identifier) @variable
property:(property_identifier) @function
)
)
@ -119,7 +119,7 @@
(predefined_type) @type.builtin
((identifier) @type
(#match? @type "^[A-Z]"))
(#match? @type "^[A-Z]"))
(type_arguments
"<" @punctuation.bracket
@ -148,3 +148,7 @@
"override"
] @keyword
[
(true)
(false)
] @boolean