Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/teal/locals.scm')
| -rw-r--r-- | runtime/queries/teal/locals.scm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/runtime/queries/teal/locals.scm b/runtime/queries/teal/locals.scm deleted file mode 100644 index e6463932..00000000 --- a/runtime/queries/teal/locals.scm +++ /dev/null @@ -1,25 +0,0 @@ - -(var_declaration - declarators: (var_declarators - (var (identifier)) @local.definition.variable)) - -(var_assignment - variables: (assignment_variables - (var (identifier) @local.definition.variable))) - -(arg name: (identifier) @local.definition.variable.parameter) - -(anon_function) @local.scope -((function_statement - (function_name) @local.definition.function) @local.scope) - -(program) @local.scope -(if_statement) @local.scope -(generic_for_statement (for_body) @local.scope) -(numeric_for_statement (for_body) @local.scope) -(repeat_statement) @local.scope -(while_statement (while_body) @local.scope) -(do_statement) @local.scope - -(identifier) @local.reference - |