Use match? instead of lua-match? for queries

pull/659/head
Natsu Kagami 2023-06-30 14:47:33 +07:00
parent cda0de8a03
commit 65fdb1743f
No known key found for this signature in database
GPG Key ID: 55A032EB38B49ADB
1 changed files with 10 additions and 10 deletions

@ -64,18 +64,18 @@
((stable_identifier (identifier) @namespace)) ((stable_identifier (identifier) @namespace))
((import_declaration ((import_declaration
path: (identifier) @type) (#lua-match? @type "^[A-Z]")) path: (identifier) @type) (#match? @type "^[A-Z]"))
((stable_identifier (identifier) @type) (#lua-match? @type "^[A-Z]")) ((stable_identifier (identifier) @type) (#match? @type "^[A-Z]"))
(export_declaration (export_declaration
path: (identifier) @namespace) path: (identifier) @namespace)
((stable_identifier (identifier) @namespace)) ((stable_identifier (identifier) @namespace))
((export_declaration ((export_declaration
path: (identifier) @type) (#lua-match? @type "^[A-Z]")) path: (identifier) @type) (#match? @type "^[A-Z]"))
((stable_identifier (identifier) @type) (#lua-match? @type "^[A-Z]")) ((stable_identifier (identifier) @type) (#match? @type "^[A-Z]"))
((namespace_selectors (identifier) @type) (#lua-match? @type "^[A-Z]")) ((namespace_selectors (identifier) @type) (#match? @type "^[A-Z]"))
; method invocation ; method invocation
@ -91,7 +91,7 @@
((call_expression ((call_expression
function: (identifier) @constructor) function: (identifier) @constructor)
(#lua-match? @constructor "^[A-Z]")) (#match? @constructor "^[A-Z]"))
(generic_function (generic_function
function: (identifier) @function.call) function: (identifier) @function.call)
@ -114,7 +114,7 @@
(field_expression field: (identifier) @property) (field_expression field: (identifier) @property)
(field_expression value: (identifier) @type (field_expression value: (identifier) @type
(#lua-match? @type "^[A-Z]")) (#match? @type "^[A-Z]"))
(infix_expression operator: (identifier) @operator) (infix_expression operator: (identifier) @operator)
(infix_expression operator: (operator_identifier) @operator) (infix_expression operator: (operator_identifier) @operator)
@ -245,13 +245,13 @@
(operator_identifier) @operator (operator_identifier) @operator
((identifier) @type (#lua-match? @type "^[A-Z]")) ((identifier) @type (#match? @type "^[A-Z]"))
((identifier) @variable.builtin ((identifier) @variable.builtin
(#lua-match? @variable.builtin "^this$")) (#match? @variable.builtin "^this$"))
( (
(identifier) @function.builtin (identifier) @function.builtin
(#lua-match? @function.builtin "^super$") (#match? @function.builtin "^super$")
) )
;; Scala CLI using directives ;; Scala CLI using directives