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]
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |