nvim-treesitter/runtime/queries/bass/locals.scm

27 lines
428 B
Scheme
Raw Normal View History

2023-03-22 05:24:56 -04:00
; Scopes
[
(list)
(scope)
(cons)
] @local.scope
2023-03-22 05:24:56 -04:00
; References
(symbol) @local.reference
2023-03-22 05:24:56 -04:00
; Definitions
((list
2024-01-06 15:05:50 +09:00
.
(symbol) @_fnkw
.
(symbol) @local.definition.function
(symbol)? @local.definition.parameter)
2023-03-22 05:24:56 -04:00
(#any-of? @_fnkw "def" "defop" "defn" "fn"))
((cons
2024-01-06 15:05:50 +09:00
.
(symbol) @_fnkw
.
(symbol) @local.definition.function
(symbol)? @local.definition.parameter)
2023-03-22 05:24:56 -04:00
(#any-of? @_fnkw "def" "defop" "defn" "fn"))