github.com/jmigpin/editor@v1.6.0/core/lsproto/testdata/callhierarchy_go.txt (about)

     1  ucmd lspSourceCursor main_template main.go 0
     2  setenv offset stdout
     3  ucmd lspCallHierarchy main.go offset
     4  contains stdout "main.go:4:8"
     5  
     6  -- main_template --
     7  package main
     8  import "log"
     9  func main(){
    10  	v1 := fn2()
    11  	log.Printf(v1)
    12  }
    13  func f●n2() string {
    14  	return "fn2"
    15  }