aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries/python/injections.scm
blob: 28334477c2a802f56374c54f412dfae356533886 (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
(call
  function: (attribute
    object: (identifier) @_re)
  arguments: (argument_list
    (string
      (string_start)
      [
        (string_content) @injection.content
        (interpolation)
      ]+
      (string_end)))
  (#eq? @_re "re")
  (#set! injection.language "regex"))

(call
  function: (attribute
    object: (identifier) @_re)
  arguments: (argument_list
    (concatenated_string
      (string
        (string_start)
        [
          (string_content) @injection.content
          (interpolation)
        ]+
        (string_end))))
  (#eq? @_re "re")
  (#set! injection.language "regex"))

((binary_operator
  left: (string
    (string_content) @injection.content)
  operator: "%")
  (#set! injection.language "printf"))

((comment) @injection.content
  (#set! injection.language "comment"))