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

11 lines
164 B
Python
Raw Normal View History

2025-03-11 19:41:58 +01:00
def func() -> None: ...
_ = func()
# ^^^^ @function.method.call
class Foo:
def method(self) -> None: ...
Foo().method()
# ^^^^^^ @function.method.call