type github.com/evanw/esbuild/internal/fs.ModKey

13 uses

	github.com/evanw/esbuild/internal/fs (current package)
		fs.go#L99: 	ModKey(path string) (ModKey, error)
		fs.go#L126: type ModKey struct {
		fs_mock.go#L66: func (fs *mockFS) ModKey(path string) (ModKey, error) {
		fs_mock.go#L67: 	return ModKey{}, errors.New("This is not available during tests")
		fs_real.go#L52: 	modKey       ModKey
		fs_real.go#L221: func (fs *realFS) ModKey(path string) (ModKey, error) {
		modkey_unix.go#L11: func modKey(path string) (ModKey, error) {
		modkey_unix.go#L14: 		return ModKey{}, err
		modkey_unix.go#L19: 		return ModKey{}, modKeyUnusable
		modkey_unix.go#L25: 		return ModKey{}, err
		modkey_unix.go#L29: 		return ModKey{}, modKeyUnusable
		modkey_unix.go#L32: 	return ModKey{

	github.com/evanw/esbuild/internal/cache
		cache_fs.go#L21: 	modKey         fs.ModKey