tree-sitter-stack-graphs-python 0.3.0

Stack graphs definition for Python using tree-sitter-python
Documentation
1
2
3
4
5
6
7
8
9
import a.b
import c.d

with a as x, c as y:
    print x.b, y.d
    #     ^ defined: 1, 4
    #       ^ defined: 1
    #          ^ defined: 2, 4
    #            ^ defined: 2