aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/python/functions.py
blob: 6d30284336d4e9d3ab740efedd901ded7a615d2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
def func() -> None: ...

_ = func()
#   ^^^^ @function.call

"{}".format(1)
#    ^^^^^^ @function.method.call

class Foo:
    def method(self) -> None: ...

Foo().method()
#     ^^^^^^ @function.method.call