sunliver

Results 3 comments of sunliver

try `godef -t -f hello.go -o 43`, you may get ``` xxx/hello.go:3:8 import (fmt "fmt") ```

Mod is not supporting expression now, it uses https://godoc.org/golang.org/x/tools/go/packages to find definition.

@avgeorge I've found an interesting case. Considering as follows, ```golang package main type foobar struct{} type fooBar struct{} type Foobar struct{} type FooBar struct{} func (a foobar) Func() {} func...