mirror of
https://github.com/golang/go
synced 2024-11-07 02:56:11 -07:00
71f556f074
When there is an explicit name for an import spec, treat it as its own identifier, separate from the import path. Example: import h "hello" The name h is defined in that import spec, not in the package hello it contains its own references. If asked about a position within the import path, continue treating that as referencing the imported package. If the position is within the name, use the identifier there that is local to that file. This change allows for go to definition of the explicit name to point to itself, find all references from the import spec, and rename the explicit name from the import spec. Change-Id: Ia1d927a26e73f2dc450d256d71909c006bdf4c37 Reviewed-on: https://go-review.googlesource.com/c/tools/+/191164 Run-TryBot: Suzy Mueller <suzmue@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
49 lines
707 B
Plaintext
49 lines
707 B
Plaintext
-- switchStringY-definition --
|
|
godef/a/f.go:8:9-10: defined here as var y string
|
|
|
|
-- switchStringY-definition-json --
|
|
{
|
|
"span": {
|
|
"uri": "file://godef/a/f.go",
|
|
"start": {
|
|
"line": 8,
|
|
"column": 9,
|
|
"offset": 76
|
|
},
|
|
"end": {
|
|
"line": 8,
|
|
"column": 10,
|
|
"offset": 77
|
|
}
|
|
},
|
|
"description": "var y string"
|
|
}
|
|
|
|
|
|
-- switchStringY-hover --
|
|
var y string
|
|
-- switchY-definition --
|
|
godef/a/f.go:8:9-10: defined here as var y int
|
|
|
|
-- switchY-definition-json --
|
|
{
|
|
"span": {
|
|
"uri": "file://godef/a/f.go",
|
|
"start": {
|
|
"line": 8,
|
|
"column": 9,
|
|
"offset": 76
|
|
},
|
|
"end": {
|
|
"line": 8,
|
|
"column": 10,
|
|
"offset": 77
|
|
}
|
|
},
|
|
"description": "var y int"
|
|
}
|
|
|
|
|
|
-- switchY-hover --
|
|
var y int
|