type github.com/evanw/esbuild/internal/bundler.crossChunkImportItemArray

8 uses

	github.com/evanw/esbuild/internal/bundler (current package)
		linker.go#L358: 	importsFromOtherChunks map[uint32]crossChunkImportItemArray
		linker.go#L909: 		chunkRepr.importsFromOtherChunks = make(map[uint32]crossChunkImportItemArray)
		linker.go#L1018: 	sortedImportItems crossChunkImportItemArray
		linker.go#L1032: func (c *linkerContext) sortedCrossChunkImports(chunks []chunkInfo, importsFromOtherChunks map[uint32]crossChunkImportItemArray) crossChunkImportArray {
		linker.go#L1059: type crossChunkImportItemArray []crossChunkImportItem
		linker.go#L1061: func (a crossChunkImportItemArray) Len() int          { return len(a) }
		linker.go#L1062: func (a crossChunkImportItemArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] }
		linker.go#L1064: func (a crossChunkImportItemArray) Less(i int, j int) bool {