Constant tree_sitter_cpp::HIGHLIGHT_QUERY[][src]

pub const HIGHLIGHT_QUERY: &str = "; Functions\n\n(call_expression\n  function: (scoped_identifier\n    name: (identifier) @function))\n\n(template_function\n  name: (identifier) @function)\n\n(template_method\n  name: (field_identifier) @function)\n\n(template_function\n  name: (scoped_identifier\n    name: (identifier) @function))\n\n(function_declarator\n  declarator: (scoped_identifier\n    name: (identifier) @function))\n\n(function_declarator\n  declarator: (scoped_identifier\n    name: (identifier) @function))\n\n(function_declarator\n  declarator: (field_identifier) @function)\n\n; Types\n\n((namespace_identifier) @type\n (#match? @type \"^[A-Z]\"))\n\n(auto) @type\n\n; Constants\n\n(this) @variable.builtin\n(nullptr) @constant\n\n; Keywords\n\n\"catch\" @keyword\n\"class\" @keyword\n\"constexpr\" @keyword\n\"delete\" @keyword\n\"explicit\" @keyword\n\"final\" @keyword\n\"friend\" @keyword\n\"mutable\" @keyword\n\"namespace\" @keyword\n\"noexcept\" @keyword\n\"new\" @keyword\n\"override\" @keyword\n\"private\" @keyword\n\"protected\" @keyword\n\"public\" @keyword\n\"template\" @keyword\n\"throw\" @keyword\n\"try\" @keyword\n\"typename\" @keyword\n\"using\" @keyword\n\"virtual\" @keyword\n\n; Strings\n\n(raw_string_literal) @string\n";

The syntax highlighting query for this language.