Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InternalGoFiles (0.44 sec)

  1. src/cmd/go/internal/load/pkg.go

    	for i, f := range list {
    		list[i] = filepath.Join(p.Dir, f)
    	}
    	sort.Strings(list)
    	return list
    }
    
    // InternalGoFiles returns the list of Go files being built for the package,
    // using absolute paths.
    func (p *Package) InternalGoFiles() []string {
    	return p.mkAbs(str.StringList(p.GoFiles, p.CgoFiles, p.TestGoFiles))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top