type github.com/evanw/esbuild/internal/js_ast.DeclaredSymbol

11 uses

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

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1478: 			DeclaredSymbols:      []js_ast.DeclaredSymbol{{Ref: ref, IsTopLevel: true}},
		linker.go#L1683: 	declaredSymbols := []js_ast.DeclaredSymbol{}
		linker.go#L1690: 		declaredSymbols = append(declaredSymbols, js_ast.DeclaredSymbol{
		linker.go#L2361: 					DeclaredSymbols: []js_ast.DeclaredSymbol{

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L65: 	declaredSymbols          []js_ast.DeclaredSymbol
		js_parser.go#L7458: 	p.declaredSymbols = append(p.declaredSymbols, js_ast.DeclaredSymbol{
		js_parser.go#L11917: 								p.declaredSymbols = append(p.declaredSymbols, js_ast.DeclaredSymbol{
		js_parser.go#L13008: 	declaredSymbols := make([]js_ast.DeclaredSymbol, len(imports))
		js_parser.go#L13016: 		declaredSymbols[i] = js_ast.DeclaredSymbol{Ref: ref, IsTopLevel: true}