Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/koto/locals.scm')
-rw-r--r--runtime/queries/koto/locals.scm24
1 files changed, 0 insertions, 24 deletions
diff --git a/runtime/queries/koto/locals.scm b/runtime/queries/koto/locals.scm
deleted file mode 100644
index 8b5bd9cb..00000000
--- a/runtime/queries/koto/locals.scm
+++ /dev/null
@@ -1,24 +0,0 @@
-; Scopes
-(module (_) @local.scope)
-
-(function
- body: (_) @local.scope)
-
-; Definitions
-(arg
- (identifier) @local.definition.variable.parameter)
-
-(arg
- (variable (identifier)) @local.definition.parameter)
-
-(import_item
- (identifier) @local.definition.namespace)
-
-(entry_block
- (identifier) @local.definition.variable.other.member)
-
-(entry_inline
- (identifier) @local.definition.variable.other.member)
-
-; References
-(identifier) @local.reference