Support go modules by using go/packages instead of go/loader

This commit is contained in:
Ivan Safonov 2019-01-23 21:36:46 +07:00
parent 1174b6968d
commit 6c76dadc23

View File

@ -239,18 +239,18 @@ func pkgInfoFromPath(src string) (*packages.Package, error) {
Dir: src, Dir: src,
} }
foundPackages, err := packages.Load(&conf, pkgFull) pkgs, err := packages.Load(&conf, pkgFull)
if err != nil { if err != nil {
return nil, err return nil, err
} }
if len(foundPackages) == 0 { if len(pkgs) == 0 {
return nil, errors.New("No packages found") return nil, errors.New("No packages found")
} }
if len(foundPackages) > 1 { if len(pkgs) > 1 {
return nil, errors.New("More than one package was found") return nil, errors.New("More than one package was found")
} }
return foundPackages[0], nil return pkgs[0], nil
} }
type doc struct { type doc struct {