Define Python fixture

This commit is contained in:
Patrick Thomson 2020-10-21 11:22:56 -04:00
parent 5caa83e020
commit 6f13d6bbba

7
test/fixtures/queries/python.py vendored Normal file
View file

@ -0,0 +1,7 @@
def foo(): pass
# declaration: function: 0, 0
def bar():
# declaration: function, 3, 0
foo()
# reference: call, 5, 4