github.com/evanw/esbuild/internal/js_ast.SExportDefault.DefaultName (field)

18 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L958: 	DefaultName LocRef

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1461: 				DefaultName: js_ast.LocRef{Loc: value.Loc, Ref: ref},
		linker.go#L3212: 						{Binding: js_ast.Binding{Loc: s.DefaultName.Loc, Data: &js_ast.BIdentifier{Ref: s.DefaultName.Ref}}, Value: s.Value.Expr},
		linker.go#L3222: 						s2.Fn.Name = &s.DefaultName
		linker.go#L3232: 						s2.Class.Name = &s.DefaultName

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5191: 					return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Stmt: &stmt}}}
		js_parser.go#L5197: 				return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Expr: &expr}}}
		js_parser.go#L5229: 				return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Stmt: &stmt}}}
		js_parser.go#L5252: 					return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Stmt: &stmt}}}
		js_parser.go#L5258: 			return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Expr: &expr}}}
		js_parser.go#L8055: 		p.recordDeclaredSymbol(s.DefaultName.Ref)
		js_parser.go#L8082: 						clone := s.DefaultName
		js_parser.go#L12042: 			p.recordExport(s.DefaultName.Loc, "default", s.DefaultName.Ref)
		js_parser_lower.go#L1574: 		defaultName = s.DefaultName
		js_parser_lower.go#L2196: 				DefaultName: defaultName,
		js_parser_lower.go#L2250: 				DefaultName: js_ast.LocRef{Loc: defaultName.Loc, Ref: defaultRef},