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
from a import deprecated
from b import ignore_warnings

class A:
    @deprecated
    # ^ defined: 1
    @ignore_warnings.all
    # ^ defined: 2
    def b(self):
        pass