feat: add angular parser and queries

This commit is contained in:
Christian Clason 2023-11-24 10:25:47 +01:00
parent 9d91101f71
commit 1e74c34b66
4 changed files with 99 additions and 0 deletions

View file

@ -0,0 +1,67 @@
(identifier) @variable
(pipe_sequence "|" @operator)
(string) @string
(number) @number
(pipe_call
name: (identifier) @function)
(pipe_call
arguments: (pipe_arguments
(identifier) @parameter))
(structural_assignment
operator: (identifier) @keyword)
(member_expression
property: (identifier) @property)
(call_expression
function: (identifier) @function)
(call_expression
function: ((identifier) @function.builtin
(#eq? @function.builtin "$any")))
[
"let"
"as"
] @keyword
[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket
[
";"
"."
","
"?."
] @punctuation.delimiter
((identifier) @boolean
(#vim-match? @boolean "^(true|false)$"))
((identifier) @variable.builtin
(#vim-match? @variable.builtin "^(this|\$event|null)$"))
[
"-"
"&&"
"+"
"<"
"<="
"="
"=="
"==="
"!="
"!=="
">"
">="
"*"
"/"
"||"
"%"
] @operator