diff --git a/tests/query/highlights/python/functions.py b/tests/query/highlights/python/functions.py new file mode 100644 index 000000000..17a7ee04f --- /dev/null +++ b/tests/query/highlights/python/functions.py @@ -0,0 +1,10 @@ +def func() -> None: ... + +_ = func() +# ^^^^ @function.method.call + +class Foo: + def method(self) -> None: ... + +Foo().method() +# ^^^^^^ @function.method.call