fix: remove redundant alternants (#8159)

This commit is contained in:
Riley Bruins 2025-09-28 18:39:09 -07:00 committed by GitHub
parent db50897909
commit 77362027f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 0 additions and 59 deletions

View file

@ -281,7 +281,6 @@
"=." "=."
"-" "-"
"-=" "-="
":="
"!=" "!="
"*" "*"
"**" "**"

View file

@ -119,8 +119,6 @@
">" ">"
"!" "!"
"~" "~"
"-"
"+"
"++" "++"
"--" "--"
"<==" "<=="

View file

@ -263,7 +263,6 @@
(idouble) (idouble)
(ifloat) (ifloat)
(creal) (creal)
(double)
(cfloat) (cfloat)
(string) (string)
(dstring) (dstring)

View file

@ -80,7 +80,6 @@
"<<" "<<"
"&" "&"
"|" "|"
"^"
"~" "~"
] @operator ] @operator

View file

@ -11,7 +11,6 @@
(collect_form) (collect_form)
(icollect_form) (icollect_form)
(accumulate_form) (accumulate_form)
(for_form)
(fcollect_form) (fcollect_form)
(faccumulate_form) (faccumulate_form)
(case_form) (case_form)

View file

@ -246,7 +246,6 @@
"<-" "<-"
"&" "&"
"&&" "&&"
"|"
"||" "||"
":>" ":>"
":?>" ":?>"

View file

@ -176,7 +176,6 @@
"/" "/"
"%" "%"
"+" "+"
"-"
"<<" "<<"
">>" ">>"
"&" "&"

View file

@ -9,8 +9,6 @@
(function) (function)
(let) (let)
(list) (list)
(constant)
(function)
(type_definition) (type_definition)
(type_alias) (type_alias)
(todo) (todo)

View file

@ -61,7 +61,6 @@
"!=" "!="
"..." "..."
"*" "*"
"*"
"*=" "*="
"/" "/"
"/=" "/="

View file

@ -135,13 +135,10 @@
"&&" "&&"
"||" "||"
"?:" "?:"
"+"
"*"
".&" ".&"
".@" ".@"
"?." "?."
"*." "*."
"*"
"*:" "*:"
"++" "++"
"--" "--"

View file

@ -169,20 +169,6 @@
"--" "--"
"!" "!"
"?:" "?:"
"="
"??="
".="
"|="
"^="
"&="
"<<="
">>="
"+="
"-="
"*="
"/="
"%="
"**="
"=>" "=>"
; type modifiers ; type modifiers
"@" "@"

View file

@ -35,11 +35,9 @@
"<<" "<<"
"<<=" "<<="
"<=" "<="
"<="
"==" "=="
">" ">"
">=" ">="
">="
">>" ">>"
">>=" ">>="
">>>" ">>>"

View file

@ -56,7 +56,6 @@
"endmacro" "endmacro"
"endcall" "endcall"
"endset" "endset"
"endtrans"
"endautoescape" "endautoescape"
] @keyword ] @keyword

View file

@ -43,7 +43,6 @@
"=" "="
"," ","
"'" "'"
":"
] @punctuation.delimiter ] @punctuation.delimiter
[ [

View file

@ -20,7 +20,6 @@
"@version" "@version"
"@operator" "@operator"
"@nodiscard" "@nodiscard"
"@cast"
"@overload" "@overload"
"@enum" "@enum"
"@language" "@language"

View file

@ -170,7 +170,6 @@
"-" "-"
".*" ".*"
"*" "*"
".*"
"/" "/"
"./" "./"
"\\" "\\"

View file

@ -42,7 +42,6 @@
"includes" "includes"
"excludes" "excludes"
"todaymarker" "todaymarker"
"title"
"section" "section"
"direction" "direction"
"subgraph" "subgraph"

View file

@ -123,12 +123,10 @@ file_path: (val_string) @variable.parameter
"*=" "*="
"/=" "/="
"++=" "++="
"-"
".." ".."
"..=" "..="
"..<" "..<"
"=>" "=>"
"="
"|" "|"
"o>" "o>"
"out>" "out>"

View file

@ -294,7 +294,6 @@
(hash_operator) (hash_operator)
(indexing_operator) (indexing_operator)
(let_operator) (let_operator)
(and_operator)
(match_operator) (match_operator)
] @operator ] @operator

View file

@ -294,7 +294,6 @@
(hash_operator) (hash_operator)
(indexing_operator) (indexing_operator)
(let_operator) (let_operator)
(and_operator)
(match_operator) (match_operator)
] @operator ] @operator

View file

@ -19,7 +19,6 @@
(declEnum) (declEnum)
(declProcRef) (declProcRef)
(declExports) (declExports)
(declProcRef)
(declType) (declType)
(defProc) (defProc)
(declField) (declField)

View file

@ -41,7 +41,6 @@
(kDestructor) (kDestructor)
(kOperator) (kOperator)
(kReference) (kReference)
(kInterface)
(kImplementation) (kImplementation)
(kInitialization) (kInitialization)
(kFinalization) (kFinalization)

View file

@ -206,7 +206,6 @@
"<=" "<="
"<" "<"
"+~" "+~"
"-~"
"*~" "*~"
"/~" "/~"
"%~" "%~"

View file

@ -85,7 +85,6 @@ alias: (identifier) @variable.member
(keyword_avg) (keyword_avg)
(keyword_sum) (keyword_sum)
(keyword_stddev) (keyword_stddev)
(keyword_count)
(keyword_rank) (keyword_rank)
] @function ] @function

View file

@ -1,6 +1,5 @@
; Namespaces ; Namespaces
[ [
"re2c"
"re2c" "re2c"
"local" "local"
"rules" "rules"

View file

@ -22,7 +22,6 @@
;types ;types
(record_type) (record_type)
(tags_type) (tags_type)
(record_expr)
(implements_implementation) (implements_implementation)
"{" "{"
"(" "("

View file

@ -186,7 +186,6 @@
"end" "end"
"implicit" "implicit"
"extension" "extension"
"with"
] @keyword ] @keyword
[ [

View file

@ -151,7 +151,6 @@
"modifier" "modifier"
"var" "var"
"let" "let"
"emit"
"error" "error"
"fallback" "fallback"
"receive" "receive"
@ -287,8 +286,6 @@
">" ">"
"!" "!"
"~" "~"
"-"
"+"
"++" "++"
"--" "--"
":=" ":="

View file

@ -68,7 +68,6 @@
"||" "||"
"^" "^"
"^=" "^="
"*"
"*=" "*="
"-" "-"
"-=" "-="
@ -86,7 +85,6 @@
"@" "@"
".." ".."
"..=" "..="
"'"
"?" "?"
] @operator ] @operator

View file

@ -22,13 +22,10 @@
".." ".."
"--" "--"
"++" "++"
"+"
"-"
"~" "~"
"!" "!"
"&" "&"
"->" "->"
"*"
"-=" "-="
"+=" "+="
"*=" "*="
@ -39,8 +36,6 @@
"^=" "^="
">>=" ">>="
"<<=" "<<="
"--"
"++"
] @operator ] @operator
[ [

View file

@ -27,7 +27,6 @@
(subprogram_definition) (subprogram_definition)
(subprogram_head) (subprogram_head)
(procedure_specification) (procedure_specification)
(sequential_block)
(loop_statement) (loop_statement)
(if_statement_block) (if_statement_block)
(if_statement) (if_statement)

View file

@ -212,7 +212,6 @@
">=" ">="
"<=" "<="
"<" "<"
"&"
"^" "^"
"|" "|"
"<<" "<<"
@ -221,7 +220,6 @@
"+" "+"
"++" "++"
"+%" "+%"
"-%"
"+|" "+|"
"-|" "-|"
"*" "*"