This repository was archived by the owner on Oct 12, 2022. It is now read-only.
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
No symbols for file when methods are on a type defined in another file #311
Open
Description
In a package have 2 Go files
The first file:
package main
func main() {}
type foo int
The second file:
package main
func (*foo) Hello() {}
func (*foo) Bye() {}
The symbol provider doesnt provide any symbols for the second file.
cc @harikb
Related to microsoft/vscode-go#1864