mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 20:37:44 +03:00
language support: CodeQL (#12470)
This commit is contained in:
parent
a83c23bb03
commit
9721144e03
4 changed files with 137 additions and 0 deletions
104
runtime/queries/codeql/highlights.scm
Normal file
104
runtime/queries/codeql/highlights.scm
Normal file
|
@ -0,0 +1,104 @@
|
|||
[
|
||||
"and"
|
||||
"any"
|
||||
"as"
|
||||
"asc"
|
||||
"avg"
|
||||
"by"
|
||||
"class"
|
||||
"concat"
|
||||
"count"
|
||||
"desc"
|
||||
"else"
|
||||
"exists"
|
||||
"extends"
|
||||
"forall"
|
||||
"forex"
|
||||
"from"
|
||||
"if"
|
||||
"implements"
|
||||
"implies"
|
||||
"import"
|
||||
"in"
|
||||
"instanceof"
|
||||
"max"
|
||||
"min"
|
||||
"module"
|
||||
"newtype"
|
||||
"not"
|
||||
"or"
|
||||
"order"
|
||||
"rank"
|
||||
"select"
|
||||
"strictconcat"
|
||||
"strictcount"
|
||||
"strictsum"
|
||||
"sum"
|
||||
"then"
|
||||
"where"
|
||||
|
||||
(false)
|
||||
(predicate)
|
||||
(result)
|
||||
(specialId)
|
||||
(super)
|
||||
(this)
|
||||
(true)
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"boolean"
|
||||
"float"
|
||||
"int"
|
||||
"date"
|
||||
"string"
|
||||
] @type.builtin
|
||||
|
||||
(annotName) @attribute
|
||||
|
||||
[
|
||||
"<"
|
||||
"<="
|
||||
"="
|
||||
">"
|
||||
">="
|
||||
"-"
|
||||
"!="
|
||||
"/"
|
||||
"*"
|
||||
"%"
|
||||
"+"
|
||||
"::"
|
||||
] @operator
|
||||
|
||||
[
|
||||
"("
|
||||
")"
|
||||
"{"
|
||||
"}"
|
||||
"["
|
||||
"]"
|
||||
] @punctuation.bracket
|
||||
|
||||
[
|
||||
","
|
||||
"|"
|
||||
] @punctuation.delimiter
|
||||
|
||||
(className) @type
|
||||
|
||||
(varName) @variable
|
||||
|
||||
(integer) @constant.numeric.integer
|
||||
(float) @constant.numeric.float
|
||||
|
||||
(string) @string
|
||||
|
||||
(aritylessPredicateExpr (literalId) @function)
|
||||
(predicateName) @function
|
||||
|
||||
[
|
||||
(line_comment)
|
||||
(block_comment)
|
||||
(qldoc)
|
||||
] @comment
|
16
runtime/queries/codeql/textobjects.scm
Normal file
16
runtime/queries/codeql/textobjects.scm
Normal file
|
@ -0,0 +1,16 @@
|
|||
(qldoc) @comment.around
|
||||
(block_comment) @comment.around
|
||||
(line_comment) @comment.inside
|
||||
(line_comment)+ @comment.around
|
||||
|
||||
(classlessPredicate
|
||||
((varDecl) @parameter.inside . ","?) @parameter.around
|
||||
(body "{" (_)* @function.inside "}")) @function.around
|
||||
(memberPredicate
|
||||
((varDecl) @parameter.inside . ","?) @parameter.around
|
||||
(body "{" (_)* @function.inside "}")) @function.around
|
||||
|
||||
(dataclass
|
||||
("{" (_)* @class.inside "}")?) @class.around
|
||||
(datatype) @class.around
|
||||
(datatypeBranch) @class.around
|
Loading…
Add table
Add a link
Reference in a new issue