const github.com/evanw/esbuild/internal/js_ast.SymbolImport

9 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1305: 	SymbolImport

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1109: 				p.symbols[member.Ref.InnerIndex].Kind == js_ast.SymbolImport {
		js_parser.go#L1236: 	if p.options.ts.Parse && existing == js_ast.SymbolImport {
		js_parser.go#L5881: 			stmt.NamespaceRef = p.declareSymbol(js_ast.SymbolImport, *stmt.StarNameLoc, name)
		js_parser.go#L5893: 			ref := p.declareSymbol(js_ast.SymbolImport, stmt.DefaultName.Loc, name)
		js_parser.go#L5902: 				ref := p.declareSymbol(js_ast.SymbolImport, item.Name.Loc, name)
		js_parser.go#L9397: 					item = js_ast.LocRef{Loc: nameLoc, Ref: p.newSymbol(js_ast.SymbolImport, name)}
		js_parser.go#L10580: 			if id, ok := e.Target.Data.(*js_ast.EIdentifier); ok && p.symbols[id.Ref.InnerIndex].Kind == js_ast.SymbolImport {
		js_parser.go#L11558: 		if p.symbols[ref.InnerIndex].Kind == js_ast.SymbolImport {