diff options
Diffstat (limited to 'runtime/queries/php/textobjects.scm')
-rw-r--r-- | runtime/queries/php/textobjects.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/runtime/queries/php/textobjects.scm b/runtime/queries/php/textobjects.scm index 51abe5c7..e35eebd7 100644 --- a/runtime/queries/php/textobjects.scm +++ b/runtime/queries/php/textobjects.scm @@ -21,13 +21,19 @@ (anonymous_function_creation_expression body: (_) @function.inside) @function.around - + +(anonymous_function_use_clause + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + (formal_parameters - [ + ([ (simple_parameter) (variadic_parameter) (property_promotion_parameter) - ] @parameter.inside) + ] @parameter.inside . ","? @parameter.around) @parameter.around) + +(arguments + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) (comment) @comment.inside |