mirror of
https://github.com/golang/go
synced 2024-11-06 02:26:17 -07:00
757ca719ca
For various reasons we need an internal-facing imports API. Move imports to internal/imports, leaving behind a small wrapper package. The wrapper package captures the globals at time of call into the options struct. Also converts the last goimports tests to use the test helpers, and fixes go/packages in module mode to work with empty modules, which was necessary to get those last tests converted. Change-Id: Ib1212c67908741a1800b992ef1935d563c6ade32 Reviewed-on: https://go-review.googlesource.com/c/tools/+/175437 Run-TryBot: Heschi Kreinick <heschi@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
25 lines
582 B
Go
25 lines
582 B
Go
// +build go1.13
|
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package imports
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
// TODO: use proxy functionality in golang.org/x/tools/go/packages/packagestest
|
|
// instead of copying it here.
|
|
|
|
func proxyDirToURL(dir string) string {
|
|
// file URLs on Windows must start with file:///. See golang.org/issue/6027.
|
|
path := filepath.ToSlash(dir)
|
|
if !strings.HasPrefix(path, "/") {
|
|
path = "/" + path
|
|
}
|
|
return "file://" + path
|
|
}
|