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
package main

import "fmt"

func main() {
	result := Add(1, 2)
	fmt.Println(result)

	var user User = *NewUser("Alice")
	fmt.Println(user.Name)
}