github.com/evanw/esbuild/internal/js_ast.SImport.ImportRecordIndex (field)

22 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1126: 	ImportRecordIndex uint32

	github.com/evanw/esbuild/internal/bundler
		linker.go#L996: 						ImportRecordIndex: importRecordIndex,
		linker.go#L1001: 						ImportRecordIndex: importRecordIndex,
		linker.go#L2889: 			record := &repr.ast.ImportRecords[s.ImportRecordIndex]
		linker.go#L3057: 			if c.shouldRemoveImportExportStmt(sourceIndex, stmtList, partStmts, stmt.Loc, s.NamespaceRef, s.ImportRecordIndex) {
		linker.go#L3080: 								ImportRecordIndex: s.ImportRecordIndex,
		linker.go#L3133: 						ImportRecordIndex: s.ImportRecordIndex,
		linker.go#L3158: 					ImportRecordIndex: s.ImportRecordIndex,
		linker.go#L3594: 							if !repr.ast.ImportRecords[s.ImportRecordIndex].SourceIndex.IsValid() {
		linker.go#L4390: 				record := &repr.ast.ImportRecords[s.ImportRecordIndex]

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5875: 		stmt.ImportRecordIndex = p.addImportRecord(ast.ImportStmt, pathLoc, pathText)
		js_parser.go#L5876: 		p.importRecords[stmt.ImportRecordIndex].WasOriginallyBareImport = wasOriginallyBareImport
		js_parser.go#L8039: 						ImportRecordIndex: s.ImportRecordIndex,
		js_parser.go#L11856: 					if record := &p.importRecords[s.ImportRecordIndex]; !record.SourceIndex.IsValid() {
		js_parser.go#L11941: 									ImportRecordIndex: s.ImportRecordIndex,
		js_parser.go#L11959: 						ImportRecordIndex: s.ImportRecordIndex,
		js_parser.go#L11968: 						ImportRecordIndex: s.ImportRecordIndex,
		js_parser.go#L11978: 							ImportRecordIndex: s.ImportRecordIndex,
		js_parser.go#L11984: 			p.importRecordsForCurrentPart = append(p.importRecordsForCurrentPart, s.ImportRecordIndex)
		js_parser.go#L11987: 				p.importRecords[s.ImportRecordIndex].ContainsImportStar = true
		js_parser.go#L13034: 			ImportRecordIndex: importRecordIndex,

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2958: 		p.printQuotedUTF8(p.importRecords[s.ImportRecordIndex].Path.Text, false /* allowBacktick */)