Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/ecma/locals.scm')
-rw-r--r--runtime/queries/ecma/locals.scm26
1 files changed, 0 insertions, 26 deletions
diff --git a/runtime/queries/ecma/locals.scm b/runtime/queries/ecma/locals.scm
deleted file mode 100644
index 594a5f50..00000000
--- a/runtime/queries/ecma/locals.scm
+++ /dev/null
@@ -1,26 +0,0 @@
-; Scopes
-;-------
-
-[
- (statement_block)
- (arrow_function)
- (function_expression)
- (function_declaration)
- (method_definition)
- (for_statement)
- (for_in_statement)
- (catch_clause)
- (finally_clause)
-] @local.scope
-
-; Definitions
-;------------
-
-; i => ...
-(arrow_function
- parameter: (identifier) @local.definition.variable.parameter)
-
-; References
-;------------
-
-(identifier) @local.reference