const github.com/evanw/esbuild/internal/runtime.SourceIndex

32 uses

	github.com/evanw/esbuild/internal/runtime (current package)
		runtime.go#L16: const SourceIndex = uint32(0)
		runtime.go#L216: 	Index:          SourceIndex,
		runtime.go#L224: 	Index:          SourceIndex,

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L1761: 		if sourceIndex == runtime.SourceIndex {
		linker.go#L530: 		runtimeSymbols := &c.symbols.Outer[runtime.SourceIndex]
		linker.go#L531: 		runtimeScope := c.files[runtime.SourceIndex].repr.(*reprJS).ast.ModuleScope
		linker.go#L532: 		c.unboundModuleRef = js_ast.Ref{OuterIndex: runtime.SourceIndex, InnerIndex: uint32(len(*runtimeSymbols))}
		linker.go#L575: 	visit(runtime.SourceIndex)
		linker.go#L1376: 			runtimeRepr := c.files[runtime.SourceIndex].repr.(*reprJS)
		linker.go#L1380: 				c.generateUseOfSymbolForInclude(exportPart, &repr.meta, 1, exportRef, runtime.SourceIndex)
		linker.go#L1384: 				c.generateUseOfSymbolForInclude(exportPart, &repr.meta, 1, exportRef, runtime.SourceIndex)
		linker.go#L1701: 		runtimeRepr := c.files[runtime.SourceIndex].repr.(*reprJS)
		linker.go#L1710: 			dep := partRef{sourceIndex: runtime.SourceIndex, partIndex: partIndex}
		linker.go#L1723: 		runtimeRepr := c.files[runtime.SourceIndex].repr.(*reprJS)
		linker.go#L1737: 			dep := partRef{sourceIndex: runtime.SourceIndex, partIndex: partIndex}
		linker.go#L2347: 				runtimeRepr := c.files[runtime.SourceIndex].repr.(*reprJS)
		linker.go#L2354: 					nonLocalDependencies[i] = partRef{sourceIndex: runtime.SourceIndex, partIndex: partIndex}
		linker.go#L2373: 					sourceIndex: runtime.SourceIndex,
		linker.go#L2549: 		runtimeRepr := c.files[runtime.SourceIndex].repr.(*reprJS)
		linker.go#L2553: 		c.generateUseOfSymbolForInclude(part, fileMeta, useCount, ref, runtime.SourceIndex)
		linker.go#L2558: 			c.includePart(runtime.SourceIndex, partIndex, entryPointBit, distanceFromEntryPoint)
		linker.go#L2961: 						if sourceIndex == runtime.SourceIndex {
		linker.go#L2999: 	visit(runtime.SourceIndex)
		linker.go#L3084: 							exportStarRef := c.files[runtime.SourceIndex].repr.(*reprJS).ast.ModuleScope.Members["__exportStar"].Ref
		linker.go#L3105: 							exportStarRef := c.files[runtime.SourceIndex].repr.(*reprJS).ast.ModuleScope.Members["__exportStar"].Ref
		linker.go#L3652: 	runtimeMembers := c.files[runtime.SourceIndex].repr.(*reprJS).ast.ModuleScope.Members
		linker.go#L3663: 		if partRange.sourceIndex == runtime.SourceIndex && c.options.OmitRuntimeForTests {
		linker.go#L3862: 			isRuntime := compileResult.sourceIndex == runtime.SourceIndex
		linker.go#L4391: 				if record.SourceIndex.IsValid() && record.SourceIndex.GetIndex() == runtime.SourceIndex {

	github.com/evanw/esbuild/internal/cache
		cache.go#L46: 			nextSourceIndex: runtime.SourceIndex + 1,

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L12962: 	if !p.options.minifyIdentifiers || p.source.Index == runtime.SourceIndex {
		js_parser.go#L13048: 		parts = p.generateImportStmt("<runtime>", keys, runtime.SourceIndex, parts, p.runtimeImports)