type github.com/evanw/esbuild/internal/js_ast.SlotCounts

11 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1477: type SlotCounts [3]uint32
		js_ast.go#L1479: func (a *SlotCounts) UnionMax(b SlotCounts) {
		js_ast.go#L1581: 	NestedScopeSlotCounts SlotCounts

	github.com/evanw/esbuild/internal/bundler
		linker.go#L3498: 		var firstTopLevelSlots js_ast.SlotCounts

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L13146: 	var nestedScopeSlotCounts js_ast.SlotCounts

	github.com/evanw/esbuild/internal/renamer
		renamer.go#L81: func NewMinifyRenamer(symbols js_ast.SymbolMap, firstTopLevelSlots js_ast.SlotCounts, reservedNames map[string]uint32) *MinifyRenamer {
		renamer.go#L220: func AssignNestedScopeSlots(moduleScope *js_ast.Scope, symbols []js_ast.Symbol) (slotCounts js_ast.SlotCounts) {
		renamer.go#L236: 		slotCounts.UnionMax(assignNestedScopeSlotsHelper(child, symbols, js_ast.SlotCounts{}))
		renamer.go#L250: func assignNestedScopeSlotsHelper(scope *js_ast.Scope, symbols []js_ast.Symbol, slot js_ast.SlotCounts) js_ast.SlotCounts {