85 Incomplete bool `json:",omitempty"` // was there an error loading this package or dependencies?
86
87▶ DefaultGODEBUG string `json:",omitempty"` // default GODEBUG setting (only for Name=="main")
88
89 // Stale and StaleReason remain here *only* for the list command.
· · ·
89▶ // Stale and StaleReason remain here *only* for the list command.
90 // They are only initialized in preparation for list execution.
91 // The regular build determines staleness on the fly during action execution.
· · ·
152// The go/build package filtered others out (like foo_wrongGOARCH.s)
153// and that's OK.
154▶func (p *Package) AllFiles() []string {
155 files := str.StringList(
156 p.GoFiles,
· · ·
196
197// Desc returns the package "description", for use in b.showOutput.
198▶func (p *Package) Desc() string {
199 if p.ForTest != "" {
200 return p.ImportPath + " [" + p.ForTest + ".test]"
· · ·
201 }
202▶ if p.Internal.ForMain != "" {
203 return p.ImportPath + " [" + p.Internal.ForMain + "]"
204 }
+ 221 more matches in this file