type github.com/evanw/esbuild/internal/fs.DirEntries
14 uses
github.com/evanw/esbuild/internal/fs (current package)
fs.go#L45: type DirEntries struct {
fs.go#L56: func (entries DirEntries) Get(query string) (*Entry, *DifferentCase) {
fs.go#L72: func (entries DirEntries) UnorderedKeys() (keys []string) {
fs.go#L85: ReadDirectory(path string) (DirEntries, error)
fs_mock.go#L15: dirs map[string]DirEntries
fs_mock.go#L20: dirs := make(map[string]DirEntries)
fs_mock.go#L32: dir = DirEntries{kDir, make(map[string]*Entry)}
fs_mock.go#L51: func (fs *mockFS) ReadDirectory(path string) (DirEntries, error) {
fs_mock.go#L55: return DirEntries{}, syscall.ENOENT
fs_real.go#L33: entries DirEntries
fs_real.go#L118: func (fs *realFS) ReadDirectory(dir string) (DirEntries, error) {
fs_real.go#L135: entries := DirEntries{dir, make(map[string]*Entry)}
github.com/evanw/esbuild/internal/resolver
resolver.go#L642: entries fs.DirEntries
resolver.go#L1148: func (r *resolver) loadAsIndex(path string, entries fs.DirEntries) (string, bool, *fs.DifferentCase) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |