Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/matlab/context.scm')
| -rw-r--r-- | runtime/queries/matlab/context.scm | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/runtime/queries/matlab/context.scm b/runtime/queries/matlab/context.scm deleted file mode 100644 index 725c10ca..00000000 --- a/runtime/queries/matlab/context.scm +++ /dev/null @@ -1,41 +0,0 @@ -(function_definition - (block (_) @context.end) -) @context - -(while_statement - (block (_) @context.end) -) @context - -(for_statement - (block (_) @context.end) -) @context - -(if_statement - (block (_) @context.end) -) @context - -(elseif_clause - (block (_) @context.end) -) @context - -(else_clause - (block (_) @context.end) -) @context - -(switch_statement) @context - -(case_clause - (block (_) @context.end) -) @context - -(otherwise_clause - (block (_) @context.end) -) @context - -(try_statement - "try" - (block (_) @context.end) @context - "end") -(catch_clause - "catch" - (block (_) @context.end) @context) |