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

19 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L299: 	Value        Binding

	github.com/evanw/esbuild/internal/bundler
		linker.go#L4364: 			preventBindingsFromBeingRenamed(p.Value, symbols)

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1482: 			p.declareBinding(kind, property.Value, opts)
		js_parser.go#L2079: 			Value:    value,
		js_parser.go#L2123: 				Value:        value,
		js_parser.go#L2142: 		Value:        value,
		js_parser.go#L2540: 				Value:        binding,
		js_parser.go#L2587: 			value := p.convertBindingToExpr(property.Value, wrapIdentifier)
		js_parser.go#L6132: 			decls = extractDeclsForBinding(property.Value, decls)
		js_parser.go#L6394: 			identifiers = findIdentifiers(property.Value, identifiers)
		js_parser.go#L7506: 			p.visitBinding(property.Value, opts)
		js_parser.go#L7512: 				if id, ok := property.Value.Data.(*js_ast.BIdentifier); ok {
		js_parser.go#L8787: 			p.markExportedBindingInsideNamespace(nsRef, property.Value)
		js_parser.go#L11690: 			p.recordExportedBinding(item.Value)
		js_parser.go#L12250: 			if !p.bindingCanBeRemovedIfUnused(property.Value) {
		js_parser_lower.go#L1083: 			if property.IsSpread || bindingHasObjectRest(property.Value) {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L894: 						p.printBinding(property.Value)
		js_printer.go#L912: 							if id, ok := property.Value.Data.(*js_ast.BIdentifier); ok && js_lexer.UTF16EqualsString(str.Value, p.renamer.NameForSymbol(id.Ref)) {
		js_printer.go#L931: 				p.printBinding(property.Value)