aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/dart/textobjects.scm
blob: 028276156725a9d86a1052e932c1f2e568e85279 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
(class_definition
  body: (_) @class.inside) @class.around

(mixin_declaration
  (class_body) @class.inside) @class.around

(extension_declaration
  (extension_body) @class.inside) @class.around

(enum_declaration
  body: (_) @class.inside) @class.around

(type_alias) @class.around

(_
  (
    [
      (getter_signature)
      (setter_signature)
      (function_signature)
      (method_signature)
      (constructor_signature)
    ]
    .
    (function_body) @function.inside @function.around
  )  @function.around
)

(declaration
  [
    (constant_constructor_signature)
    (constructor_signature)
    (factory_constructor_signature)
    (redirecting_factory_constructor_signature)
    (getter_signature)
    (setter_signature)
    (operator_signature)
    (function_signature)
  ]
) @function.around

(lambda_expression
    body: (_) @function.inside
) @function.around

(function_expression
    body: (_) @function.inside
) @function.around

[
  (comment)
  (documentation_comment)
] @comment.inside

(comment)+ @comment.around

(documentation_comment)+ @comment.around

(formal_parameter) @parameter.inside

(formal_parameter_list) @parameter.around

(expression_statement
  ((identifier) @_name (#any-of? @_name "test" "testWidgets"))
  .
  (selector (argument_part (arguments . (_) . (argument) @test.inside)))
) @test.around