Update cue parser and queries

Queries ported from nvim-treesitter
pull/9458/head
Michael Davis 1 month ago
parent 400a1930ad
commit f3a46c8751
No known key found for this signature in database

@ -2351,7 +2351,7 @@ formatter = { command = "cue", args = ["fmt", "-"] }
[[grammar]]
name = "cue"
source = { git = "https://github.com/eonpatapon/tree-sitter-cue", rev = "61843e3beebf19417e4fede4e8be4df1084317ad" }
source = { git = "https://github.com/eonpatapon/tree-sitter-cue", rev = "8a5f273bfa281c66354da562f2307c2d394b6c81" }
[[language]]
name = "slint"

@ -1,12 +1,46 @@
(package_clause "package" @keyword.control.import)
; Includes
[
"package"
"import"
] @keyword.control.import
; Namespaces
(package_identifier) @namespace
(import_declaration "import" @keyword.control.import)
(import_spec
[
"."
"_"
] @punctuation.special)
[
"!"
(attr_path)
(package_path)
] @string.special.url ; In attributes
; Attributes
(attribute) @attribute
; Conditionals
"if" @keyword.control.conditional
; Repeats
"for" @keyword.control.repeat
(for_clause
"_" @punctuation.special)
; Keywords
"let" @keyword
"in" @keyword.operator
; Operators
[
"+"
"-"
"*"
"/"
"|"
"&"
"||"
@ -19,100 +53,103 @@
">="
"=~"
"!~"
"+"
"-"
"*"
"/"
"!"
"="
] @operator
(unary_expression "*" @operator)
(unary_expression "=~" @operator.regexp)
(unary_expression "!~" @operator.regexp)
(binary_expression _ "&" @operator.unify _)
(binary_expression _ "|" @operator.disjunct _)
; Fields & Properties
(field
(label
(identifier) @variable.other.member))
(builtin) @function.builtin
(selector_expression
(_)
(identifier) @variable.other.member)
(qualified_identifier) @function.builtin
; Functions
(call_expression
function: (identifier) @function)
(let_clause "let" @keyword.storage.type)
(call_expression
function: (selector_expression
(_)
(identifier) @function))
(for_clause "for" @keyword.control.repeat)
(for_clause "in" @keyword.control.repeat)
(call_expression
function: (builtin_function) @function)
(guard_clause "if" @keyword.control.conditional)
(builtin_function) @function.builtin
(comment) @comment
; Variables
(identifier) @variable
[
(string_type)
(simple_string_lit)
(multiline_string_lit)
(bytes_type)
(simple_bytes_lit)
(multiline_bytes_lit)
] @string
; Types
(primitive_type) @type.builtin
[
(number_type)
(int_lit)
(int_type)
(uint_type)
] @constant.numeric.integer
((identifier) @type
(#match? @type "^_?#"))
[
(float_lit)
(float_type)
] @constant.numeric.float
[
(bool_type)
(true)
(false)
] @constant.builtin.boolean
(null) @constant.builtin
(ellipsis) @punctuation.bracket
(slice_type)
(pointer_type)
] @type ; In attributes
; Punctuation
[
","
":"
] @punctuation.delimiter
[
"("
")"
"["
"]"
"{"
"}"
"["
"]"
"("
")"
"<"
">"
] @punctuation.bracket
(interpolation "\\(" @punctuation.bracket (_) ")" @punctuation.bracket) @variable.other.member
(identifier) @variable
; Types
(primitive_type) @type.builtin
[
(ellipsis)
"?"
] @punctuation.special
(
(identifier) @keyword.storage.type
(#match? @keyword.storage.type "^#")
)
; Literals
(string) @string
[
(slice_type)
(pointer_type)
] @type ; In attributes
(escape_char)
(escape_unicode)
] @constant.character.escape
(number) @constant.numeric
(field (label (identifier) @variable.other.member))
(float) @constant.numeric.float
(field (label alias: (identifier) @label))
(si_unit
(float)
(_) @string.special.symbol)
(attribute (identifier) @attribute)
(boolean) @constant.builtin.boolean
[
(null)
(top)
(bottom)
] @constant.builtin
; Interpolations
(interpolation
"\\(" @punctuation.special
(_)
")" @punctuation.special)
(interpolation
"\\("
(identifier) @variable
")")
; Comments
(comment) @comment

Loading…
Cancel
Save