Constant tree_sitter_r::TAGS_QUERY

source ·
pub const TAGS_QUERY: &str = "(binary_operator\n    lhs: (identifier) @name\n    operator: \"<-\"\n    rhs: (function_definition)\n) @definition.function\n\n(binary_operator\n    lhs: (identifier) @name\n    operator: \"=\"\n    rhs: (function_definition)\n) @definition.function\n\n(binary_operator\n    lhs: (string) @name\n    operator: \"<-\"\n    rhs: (function_definition)\n) @definition.function\n\n(binary_operator\n    lhs: (string) @name\n    operator: \"=\"\n    rhs: (function_definition)\n) @definition.function\n\n(call\n    function: (identifier) @name\n) @reference.call\n\n(call\n    function: (namespace_operator\n        rhs: (identifier) @name\n    )\n) @reference.call\n";