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

10 uses

	github.com/evanw/esbuild/internal/config (current package)
		config.go#L194: 	Defines  *ProcessedDefines
		globals.go#L13: var processedGlobals *ProcessedDefines
		globals.go#L855: type ProcessedDefines struct {
		globals.go#L865: func ProcessDefines(userDefines map[string]DefineData) ProcessedDefines {
		globals.go#L877: 	result := ProcessedDefines{

	github.com/evanw/esbuild/internal/bundler
		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#L272: 	defines *config.ProcessedDefines

	github.com/evanw/esbuild/pkg/api
		api_impl.go#L378: func validateDefines(log logger.Log, defines map[string]string, pureFns []string) (*config.ProcessedDefines, []config.InjectedDefine) {