github.com/evanw/esbuild/internal/js_ast.Part.DeclaredSymbols (field)

13 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1768: 	DeclaredSymbols []DeclaredSymbol

	github.com/evanw/esbuild/internal/bundler
		linker.go#L844: 						for _, declared := range part.DeclaredSymbols {
		linker.go#L1478: 			DeclaredSymbols:      []js_ast.DeclaredSymbol{{Ref: ref, IsTopLevel: true}},
		linker.go#L1754: 			DeclaredSymbols:   declaredSymbols,
		linker.go#L2361: 					DeclaredSymbols: []js_ast.DeclaredSymbol{
		linker.go#L3528: 				for _, declared := range part.DeclaredSymbols {
		linker.go#L3630: 				for _, declared := range part.DeclaredSymbols {

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L12132: 		part.DeclaredSymbols = p.declaredSymbols
		js_parser.go#L13029: 		DeclaredSymbols:     declaredSymbols,
		js_parser.go#L13071: 			part.DeclaredSymbols = append(part.DeclaredSymbols, p.declaredSymbols...)
		js_parser.go#L13074: 				if p.moduleScope.ContainsDirectEval && len(part.DeclaredSymbols) > 0 {
		js_parser.go#L13113: 			for _, declared := range part.DeclaredSymbols {