mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-21 12:50:09 -04:00
17 lines
340 B
Python
17 lines
340 B
Python
def func() -> None: ...
|
|
|
|
_ = func()
|
|
# ^^^^ @function.call
|
|
|
|
class Foo:
|
|
def method(self) -> None: ...
|
|
|
|
Foo().method()
|
|
# ^^^^^^ @function.method.call
|
|
|
|
@pytest.mark.filterwarnings("ignore::DeprecationWarning")
|
|
#^^^^^^ @variable
|
|
# ^^^^ @variable.member
|
|
# ^^^^^^^^^^^^^^ @function.method.call
|
|
def test_func():
|
|
pass
|