github.com/evanw/esbuild/internal/js_ast.PropertyBinding.DefaultValue (field)

19 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L300: 	DefaultValue *Expr

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L2124: 				DefaultValue: defaultValue,
		js_parser.go#L2143: 		DefaultValue: defaultValue,
		js_parser.go#L2541: 				DefaultValue: initializer,
		js_parser.go#L2597: 				Initializer: property.DefaultValue,
		js_parser.go#L7507: 			if property.DefaultValue != nil {
		js_parser.go#L7508: 				wasAnonymousNamedExpr := p.isAnonymousNamedExpr(*property.DefaultValue)
		js_parser.go#L7509: 				*property.DefaultValue = p.visitExpr(*property.DefaultValue)
		js_parser.go#L7513: 					*property.DefaultValue = p.maybeKeepExprSymbolName(
		js_parser.go#L7514: 						*property.DefaultValue, p.symbols[id.Ref.InnerIndex].OriginalName, wasAnonymousNamedExpr)
		js_parser.go#L12253: 			if property.DefaultValue != nil && !p.exprCanBeRemovedIfUnused(*property.DefaultValue) {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L896: 						if property.DefaultValue != nil {
		js_printer.go#L900: 							p.printExpr(*property.DefaultValue, js_ast.LComma, 0)
		js_printer.go#L913: 								if property.DefaultValue != nil {
		js_printer.go#L917: 									p.printExpr(*property.DefaultValue, js_ast.LComma, 0)
		js_printer.go#L933: 				if property.DefaultValue != nil {
		js_printer.go#L937: 					p.printExpr(*property.DefaultValue, js_ast.LComma, 0)