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

6 uses

	github.com/evanw/esbuild/internal/bundler (current package)
		linker.go#L1074: type crossChunkExportItemArray []crossChunkExportItem
		linker.go#L1076: func (a crossChunkExportItemArray) Len() int          { return len(a) }
		linker.go#L1077: func (a crossChunkExportItemArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] }
		linker.go#L1079: func (a crossChunkExportItemArray) Less(i int, j int) bool {
		linker.go#L1097: func (c *linkerContext) sortedCrossChunkExportItems(exportRefs map[js_ast.Ref]bool) crossChunkExportItemArray {
		linker.go#L1098: 	result := make(crossChunkExportItemArray, 0, len(exportRefs))