nvim-treesitter/tests/query/highlights/python/functions.py

18 lines
339 B
Python

def func() -> None: ...
_ = func()
# ^^^^ @function.call
"{}".format(1)
# ^^^^^^ @function.method.call
class Foo:
def method(self) -> None: ...
# ^^^^ @variable.builtin
@classmethod
def clsmethod(cls) -> None: ...
# ^^^ @variable.builtin
Foo().method()
# ^^^^^^ @function.method.call