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
10
11
12
13
14
a = 1

a.b = 2

a.c.d = 5

print a.b
#     ^ defined: 1
#       ^ defined: 3

print a.c, a.c.d
#     ^ defined: 1
#       ^ defined:
#              ^ defined: 5