aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/koka/locals.scm
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/queries/koka/locals.scm')
-rw-r--r--runtime/queries/koka/locals.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/runtime/queries/koka/locals.scm b/runtime/queries/koka/locals.scm
new file mode 100644
index 00000000..f8a83e0c
--- /dev/null
+++ b/runtime/queries/koka/locals.scm
@@ -0,0 +1,30 @@
+(modulebody) @local.scope
+
+(block) @local.scope
+
+(pattern
+ (identifier
+ (varid) @local.definition))
+
+(decl
+ (apattern
+ (pattern
+ (identifier
+ (varid) @local.definition))))
+
+(puredecl
+ (funid
+ (identifier
+ (varid) @local.definition)))
+
+(puredecl
+ (binder
+ (identifier
+ (varid) @local.definition)))
+
+(decl
+ (binder
+ (identifier
+ (varid) @local.definition)))
+
+(identifier (varid) @local.reference)