type github.com/evanw/esbuild/internal/config.Platform

10 uses

	github.com/evanw/esbuild/internal/config (current package)
		config.go#L27: type Platform uint8
		config.go#L30: 	PlatformBrowser Platform = iota
		config.go#L197: 	Platform Platform

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L1807: 	Platform          config.Platform
		bundler.go#L1815: 	definesMap   map[config.Platform]*config.ProcessedDefines
		bundler.go#L1889: func (cache *runtimeCache) processedDefines(key config.Platform) (defines *config.ProcessedDefines) {
		bundler.go#L1927: 		cache.definesMap = make(map[config.Platform]*config.ProcessedDefines)

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L286: 	platform                       config.Platform

	github.com/evanw/esbuild/internal/resolver
		resolver.go#L21: var defaultMainFields = map[config.Platform][]string{

	github.com/evanw/esbuild/pkg/api
		api_impl.go#L87: func validatePlatform(value Platform) config.Platform {