2023-03-22 05:24:56 -04:00
|
|
|
; Scopes
|
|
|
|
|
[
|
|
|
|
|
(list)
|
|
|
|
|
(scope)
|
|
|
|
|
(cons)
|
2023-07-22 15:29:32 +02:00
|
|
|
] @local.scope
|
2023-03-22 05:24:56 -04:00
|
|
|
|
|
|
|
|
; References
|
2023-07-22 15:29:32 +02:00
|
|
|
(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
|
2023-07-22 15:29:32 +02:00
|
|
|
(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
|
2023-07-22 15:29:32 +02:00
|
|
|
(symbol)? @local.definition.parameter)
|
2023-03-22 05:24:56 -04:00
|
|
|
(#any-of? @_fnkw "def" "defop" "defn" "fn"))
|