github.com/evanw/esbuild/internal/css_ast.AST.ImportRecords (field)

14 uses

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

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L103: 	return &repr.ast.ImportRecords
		linker.go#L489: 			repr.ast.ImportRecords = append([]ast.ImportRecord{}, repr.ast.ImportRecords...)
		linker.go#L1118: 			for importRecordIndex := range repr.ast.ImportRecords {
		linker.go#L1119: 				if record := &repr.ast.ImportRecords[importRecordIndex]; record.SourceIndex.IsValid() {
		linker.go#L2536: 		for _, record := range repr.ast.ImportRecords {
		linker.go#L2986: 				for _, record := range repr.ast.ImportRecords {
		linker.go#L4165: 					if record := ast.ImportRecords[r.ImportRecordIndex]; !record.SourceIndex.IsValid() {
		linker.go#L4206: 					ast.Rules = append(ast.Rules, &css_ast.RAtImport{ImportRecordIndex: uint32(len(ast.ImportRecords))})
		linker.go#L4207: 					ast.ImportRecords = append(ast.ImportRecords, record)

	github.com/evanw/esbuild/internal/css_parser
		css_parser.go#L49: 	tree.ImportRecords = p.importRecords

	github.com/evanw/esbuild/internal/css_printer
		css_printer.go#L30: 		importRecords: tree.ImportRecords,