github.com/evanw/esbuild/pkg/api.watcher.recentItems (field)

17 uses

	github.com/evanw/esbuild/pkg/api (current package)
		api_impl.go#L890: 	recentItems       []string
		api_impl.go#L903: 	for _, path := range w.recentItems {
		api_impl.go#L905: 			w.recentItems[end] = path
		api_impl.go#L909: 	w.recentItems = w.recentItems[:end]
		api_impl.go#L994: 	for i, path := range w.recentItems {
		api_impl.go#L997: 			copy(w.recentItems[i:], w.recentItems[i+1:])
		api_impl.go#L998: 			w.recentItems[len(w.recentItems)-1] = path
		api_impl.go#L1015: 			w.recentItems = append(w.recentItems, path)
		api_impl.go#L1016: 			if len(w.recentItems) > maxRecentItemCount {
		api_impl.go#L1018: 				copy(w.recentItems, w.recentItems[1:])
		api_impl.go#L1019: 				w.recentItems = w.recentItems[:maxRecentItemCount]