mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-21 21:00:08 -04:00
11 lines
164 B
Python
11 lines
164 B
Python
|
|
def func() -> None: ...
|
||
|
|
|
||
|
|
_ = func()
|
||
|
|
# ^^^^ @function.method.call
|
||
|
|
|
||
|
|
class Foo:
|
||
|
|
def method(self) -> None: ...
|
||
|
|
|
||
|
|
Foo().method()
|
||
|
|
# ^^^^^^ @function.method.call
|