Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/ecma/textobjects.scm')
| -rw-r--r-- | runtime/queries/ecma/textobjects.scm | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/runtime/queries/ecma/textobjects.scm b/runtime/queries/ecma/textobjects.scm deleted file mode 100644 index 08c0307b..00000000 --- a/runtime/queries/ecma/textobjects.scm +++ /dev/null @@ -1,45 +0,0 @@ -(function_declaration - body: (_) @function.inside) @function.around - -(function_expression - body: (_) @function.inside) @function.around - -(arrow_function - body: (_) @function.inside) @function.around - -(method_definition - body: (_) @function.inside) @function.around - -(generator_function_declaration - body: (_) @function.inside) @function.around - -(class_declaration - body: (class_body) @class.inside) @class.around - -(class - (class_body) @class.inside) @class.around - -(export_statement - declaration: [ - (function_declaration) @function.around - (class_declaration) @class.around - ]) - -(formal_parameters - ((_) @parameter.inside . ","? @parameter.around) @parameter.around) - -(arguments - ((_) @parameter.inside . ","? @parameter.around) @parameter.around) - -(comment) @comment.inside - -(comment)+ @comment.around - -(array - (_) @entry.around) - -(pair - (_) @entry.inside) @entry.around - -(pair_pattern - (_) @entry.inside) @entry.around |