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

22 uses

	github.com/evanw/esbuild/internal/ast (current package)
		ast.go#L59: type ImportRecord struct {

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L76: 	importRecords() *[]ast.ImportRecord
		bundler.go#L89: func (repr *reprJS) importRecords() *[]ast.ImportRecord {
		bundler.go#L102: func (repr *reprCSS) importRecords() *[]ast.ImportRecord {
		bundler.go#L392: 		records := append([]ast.ImportRecord{}, *recordsPtr...)
		linker.go#L345: 	crossChunkImportRecords []ast.ImportRecord
		linker.go#L434: 			repr.ast.ImportRecords = append([]ast.ImportRecord{}, repr.ast.ImportRecords...)
		linker.go#L489: 			repr.ast.ImportRecords = append([]ast.ImportRecord{}, repr.ast.ImportRecords...)
		linker.go#L736: 			crossChunkImportRecords := make([]ast.ImportRecord, len(chunk.crossChunkImports))
		linker.go#L741: 				crossChunkImportRecords[i] = ast.ImportRecord{
		linker.go#L2576: func (c *linkerContext) isExternalDynamicImport(record *ast.ImportRecord) bool {
		linker.go#L4135: 	externalImportRecords []ast.ImportRecord

	github.com/evanw/esbuild/internal/css_ast
		css_ast.go#L24: 	ImportRecords []ast.ImportRecord

	github.com/evanw/esbuild/internal/css_parser
		css_parser.go#L26: 	importRecords []ast.ImportRecord
		css_parser.go#L342: 			p.importRecords = append(p.importRecords, ast.ImportRecord{
		css_parser.go#L602: 			p.importRecords = append(p.importRecords, ast.ImportRecord{
		css_parser.go#L627: 				p.importRecords = append(p.importRecords, ast.ImportRecord{

	github.com/evanw/esbuild/internal/css_printer
		css_printer.go#L17: 	importRecords []ast.ImportRecord

	github.com/evanw/esbuild/internal/js_ast
		js_ast.go#L1610: 	ImportRecords []ast.ImportRecord

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L105: 	importRecords               []ast.ImportRecord
		js_parser.go#L6144: 	p.importRecords = append(p.importRecords, ast.ImportRecord{

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L459: 	importRecords      []ast.ImportRecord