nvim-treesitter/tests/query/highlights/python/functions.py
2025-03-11 19:46:53 +01:00

10 lines
157 B
Python

def func() -> None: ...
_ = func()
# ^^^^ @function.call
class Foo:
def method(self) -> None: ...
Foo().method()
# ^^^^^^ @function.method.call