type github.com/evanw/esbuild/internal/ast.ImportKind

18 uses

	github.com/evanw/esbuild/internal/ast (current package)
		ast.go#L9: type ImportKind uint8
		ast.go#L13: 	ImportEntryPoint ImportKind = iota
		ast.go#L34: func (kind ImportKind) StringForMetafile() string {
		ast.go#L55: func (kind ImportKind) IsFromCSS() bool {
		ast.go#L91: 	Kind ImportKind

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L397: 			resolverCache := make(map[ast.ImportKind]map[string]*resolver.ResolveResult)
		bundler.go#L633: 	kind ast.ImportKind,

	github.com/evanw/esbuild/internal/config
		config.go#L421: 	Kind       ast.ImportKind

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L6142: func (p *parser) addImportRecord(kind ast.ImportKind, loc logger.Loc, text string) uint32 {

	github.com/evanw/esbuild/internal/resolver
		resolver.go#L115: 	Resolve(sourceDir string, importPath string, kind ast.ImportKind) *ResolveResult
		resolver.go#L121: 	ProbeResolvePackageAsRelative(sourceDir string, importPath string, kind ast.ImportKind) *ResolveResult
		resolver.go#L203: func (r *resolver) Resolve(sourceDir string, importPath string, kind ast.ImportKind) *ResolveResult {
		resolver.go#L293: func (r *resolver) ProbeResolvePackageAsRelative(sourceDir string, importPath string, kind ast.ImportKind) *ResolveResult {
		resolver.go#L391: func (r *resolver) resolveWithoutSymlinks(sourceDir string, importPath string, kind ast.ImportKind) *ResolveResult {
		resolver.go#L552: func (r *resolver) resolveWithoutRemapping(sourceDirInfo *dirInfo, importPath string, kind ast.ImportKind) (PathPair, bool, *fs.DifferentCase) {
		resolver.go#L1186: func (r *resolver) loadAsFileOrDirectory(path string, kind ast.ImportKind) (PathPair, bool, *fs.DifferentCase) {
		resolver.go#L1270: func (r *resolver) matchTSConfigPaths(tsConfigJSON *TSConfigJSON, path string, kind ast.ImportKind) (PathPair, bool, *fs.DifferentCase) {
		resolver.go#L1351: func (r *resolver) loadNodeModules(path string, kind ast.ImportKind, dirInfo *dirInfo) (PathPair, bool, *fs.DifferentCase) {