refactor(queries): Remove quotes from properties in set! directive

This commit is contained in:
Omar Valdez 2024-07-27 16:28:19 -07:00 committed by Christian Clason
parent 88aa09e6e9
commit 51bba660a8
45 changed files with 95 additions and 95 deletions

View file

@ -9,7 +9,7 @@
; Definitions
(argument
name: (identifier) @local.definition.parameter
(#set! "definition.var.scope" "local"))
(#set! definition.var.scope "local"))
(variable_definition
name: (variable
@ -20,10 +20,10 @@
name: (variable
(environment_var
(identifier) @local.definition.var))
(#set! "definition.var.scope" "global"))
(#set! definition.var.scope "global"))
(function_definition
name: (variable) @local.definition.var
(#set! "definition.var.scope" "parent"))
(#set! definition.var.scope "parent"))
(identifier) @local.reference