22 lines
261 B
Scheme
22 lines
261 B
Scheme
; Scopes
|
|
[
|
|
(program)
|
|
(macro)
|
|
(memory_execution)
|
|
(subroutine)
|
|
] @local.scope
|
|
|
|
; References
|
|
(identifier) @local.reference
|
|
|
|
; Definitions
|
|
(label
|
|
"@"
|
|
.
|
|
(identifier) @local.definition.function)
|
|
|
|
(macro
|
|
"%"
|
|
.
|
|
(identifier) @local.definition.macro)
|