type github.com/evanw/esbuild/internal/resolver.dirInfo

11 uses

	github.com/evanw/esbuild/internal/resolver (current package)
		resolver.go#L166: 	dirCache map[string]*dirInfo
		resolver.go#L198: 		dirCache:               make(map[string]*dirInfo),
		resolver.go#L552: func (r *resolver) resolveWithoutRemapping(sourceDirInfo *dirInfo, importPath string, kind ast.ImportKind) (PathPair, bool, *fs.DifferentCase) {
		resolver.go#L631: type dirInfo struct {
		resolver.go#L634: 	parent *dirInfo
		resolver.go#L638: 	enclosingBrowserScope *dirInfo
		resolver.go#L650: func (r *resolver) dirInfoCached(path string) *dirInfo {
		resolver.go#L782: func (r *resolver) dirInfoUncached(path string) *dirInfo {
		resolver.go#L784: 	var parentInfo *dirInfo
		resolver.go#L812: 	info := &dirInfo{
		resolver.go#L1351: func (r *resolver) loadNodeModules(path string, kind ast.ImportKind, dirInfo *dirInfo) (PathPair, bool, *fs.DifferentCase) {