mirror of https://github.com/mongodb/mongo
156 lines
2.6 KiB
Scheme
156 lines
2.6 KiB
Scheme
; Downloaded and combined from these:
|
|
; https://github.com/tree-sitter/tree-sitter-c/blob/3aa2995549d5d8b26928e8d3fa2770fd4327414e/queries/highlights.scm
|
|
; https://github.com/tree-sitter/tree-sitter-cpp/blob/f41b4f66a42100be405f96bdc4ebc4a61095d3e8/queries/highlights.scm
|
|
|
|
; Functions
|
|
(identifier) @variable
|
|
|
|
((identifier) @constant
|
|
(#match? @constant "^[A-Z][A-Z\\d_]*$"))
|
|
|
|
"break" @keyword
|
|
"case" @keyword
|
|
"const" @keyword
|
|
"continue" @keyword
|
|
"default" @keyword
|
|
"do" @keyword
|
|
"else" @keyword
|
|
"enum" @keyword
|
|
"extern" @keyword
|
|
"for" @keyword
|
|
"if" @keyword
|
|
"inline" @keyword
|
|
"return" @keyword
|
|
"sizeof" @keyword
|
|
"static" @keyword
|
|
"struct" @keyword
|
|
"switch" @keyword
|
|
"typedef" @keyword
|
|
"union" @keyword
|
|
"volatile" @keyword
|
|
"while" @keyword
|
|
|
|
"#define" @keyword
|
|
"#elif" @keyword
|
|
"#else" @keyword
|
|
"#endif" @keyword
|
|
"#if" @keyword
|
|
"#ifdef" @keyword
|
|
"#ifndef" @keyword
|
|
"#include" @keyword
|
|
(preproc_directive) @keyword
|
|
|
|
"--" @operator
|
|
"-" @operator
|
|
"-=" @operator
|
|
"->" @operator
|
|
"=" @operator
|
|
"!=" @operator
|
|
"*" @operator
|
|
"&" @operator
|
|
"&&" @operator
|
|
"+" @operator
|
|
"++" @operator
|
|
"+=" @operator
|
|
"<" @operator
|
|
"==" @operator
|
|
">" @operator
|
|
"||" @operator
|
|
|
|
"." @delimiter
|
|
";" @delimiter
|
|
|
|
(string_literal) @string
|
|
(system_lib_string) @string
|
|
|
|
(null) @constant
|
|
(number_literal) @number
|
|
(char_literal) @number
|
|
|
|
(field_identifier) @property
|
|
(statement_identifier) @label
|
|
(type_identifier) @type
|
|
(primitive_type) @type
|
|
(sized_type_specifier) @type
|
|
|
|
(call_expression
|
|
function: (identifier) @function)
|
|
(call_expression
|
|
function: (field_expression
|
|
field: (field_identifier) @function))
|
|
(function_declarator
|
|
declarator: (identifier) @function)
|
|
(preproc_function_def
|
|
name: (identifier) @function.special)
|
|
|
|
(comment) @comment
|
|
|
|
(call_expression
|
|
function: (qualified_identifier
|
|
name: (identifier) @function))
|
|
|
|
(template_function
|
|
name: (identifier) @function)
|
|
|
|
(template_method
|
|
name: (field_identifier) @function)
|
|
|
|
(template_function
|
|
name: (identifier) @function)
|
|
|
|
(function_declarator
|
|
declarator: (qualified_identifier
|
|
name: (identifier) @function))
|
|
|
|
(function_declarator
|
|
declarator: (field_identifier) @function)
|
|
|
|
; Types
|
|
|
|
((namespace_identifier) @type
|
|
(#match? @type "^[A-Z]"))
|
|
|
|
(auto) @type
|
|
|
|
; Constants
|
|
|
|
(this) @variable.builtin
|
|
(null "nullptr" @constant)
|
|
|
|
; Keywords
|
|
|
|
[
|
|
"catch"
|
|
"class"
|
|
"co_await"
|
|
"co_return"
|
|
"co_yield"
|
|
"constexpr"
|
|
"constinit"
|
|
"consteval"
|
|
"delete"
|
|
"explicit"
|
|
"final"
|
|
"friend"
|
|
"mutable"
|
|
"namespace"
|
|
"noexcept"
|
|
"new"
|
|
"override"
|
|
"private"
|
|
"protected"
|
|
"public"
|
|
"template"
|
|
"throw"
|
|
"try"
|
|
"typename"
|
|
"using"
|
|
"concept"
|
|
"requires"
|
|
"virtual"
|
|
] @keyword
|
|
|
|
; Strings
|
|
|
|
(raw_string_literal) @string
|