cruxlines 0.3.0

Ranks symbol definitions by cross-file references using tree-sitter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PI = 3.14159


def add(a: int, b: int) -> int:
    return a + b


class Counter:
    def __init__(self, start: int = 0) -> None:
        self.value = start

    def inc(self) -> int:
        self.value += 1
        return self.value