aboutsummaryrefslogtreecommitdiffstats
path: root/queries/java/locals.scm
blob: 74fc6cd19316ee7ee7c8b89b8d48983bff9cb5de (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
69
70
71
72
73
74
75
76
77
78
; SCOPES
; declarations
(program) @scope
(class_declaration
  body: (_) @scope)
(enum_declaration
  body: (_) @scope)
(method_declaration) @scope ; whole method_declaration because arguments

; block
(block) @scope

; if/else
(if_statement) @scope ; if+else
(if_statement
  consequence: (_) @scope) ; if body in case there are no braces
(if_statement
  alternative: (_) @scope) ; else body in case there are no braces

; try/catch
(try_statement) @scope ; covers try+catch, individual try and catch are covered by (block)
(catch_clause) @scope ; needed because `Exception` variable

; loops
(for_statement) @scope ; whole for_statement because loop iterator variable
(for_statement         ; "for" body in case there are no braces
  body: (_) @scope)
(do_statement
  body: (_) @scope)
(while_statement
  body: (_) @scope)

; Functions

(constructor_declaration) @scope
(method_declaration
  name: (identifier) @definition.scope) @scope


; DEFINITIONS
 (package_declaration
    (identifier) @definition.namespace) 
(class_declaration
  name: (identifier) @definition.class)
(enum_declaration
  name: (identifier) @definition.enum)
(method_declaration
  name: (identifier) @definition.method)

(local_variable_declaration
  declarator: (variable_declarator
                name: (identifier) @definition.var))
(formal_parameter
  name: (identifier) @definition.var)
(catch_formal_parameter
  name: (identifier) @definition.var)
(inferred_parameters (identifier) @definition.var) ; (x,y) -> ...
(lambda_expression
    parameters: (identifier) @definition.var) ; x -> ...

; we need submatch!
; TODO: capture nested imports
;(import_declaration
 ;(scoped_identifier
   ;((identifier) @definition.import)))
;(import_declaration
  ;(scoped_identifier
    ;(scoped_identifier
      ;((identifier) @definition.import))))

(field_declaration
  declarator: (variable_declarator
                name: (identifier) @definition.field))

; REFERENCES
(identifier) @reference
((type_identifier) @reference
 (set! reference.kind "type"))