tree-sitter-stack-graphs 0.10.0

Create stack graphs using tree-sitter parsers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
def foo():
    pass

bar()
# ^ defined:

def bar():
    pass

foo()
# ^ defined: 1

def foo():
    pass

foo()
# ^ defined: 13