mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 12:06:55 -04:00
14 lines
207 B
Python
14 lines
207 B
Python
|
|
def func() -> None: ...
|
||
|
|
|
||
|
|
_ = func()
|
||
|
|
# ^^^^ @function.call
|
||
|
|
|
||
|
|
"{}".format(1)
|
||
|
|
# ^^^^^^ @function.method.call
|
||
|
|
|
||
|
|
class Foo:
|
||
|
|
def method(self) -> None: ...
|
||
|
|
|
||
|
|
Foo().method()
|
||
|
|
# ^^^^^^ @function.method.call
|