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

32 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L270: type Property struct {
		js_ast.go#L339: 	Properties   []Property
		js_ast.go#L565: 	Properties []Property
		js_ast.go#L576: 	Properties       []Property

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1496: 		clone.Properties = append(make([]js_ast.Property, 0, len(clone.Properties)), clone.Properties...)
		linker.go#L1532: 	properties := []js_ast.Property{}
		linker.go#L1661: 		properties = append(properties, js_ast.Property{

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1718: func (p *parser) parseProperty(kind js_ast.PropertyKind, opts propertyOpts, errors *deferredErrors) (js_ast.Property, bool) {
		js_parser.go#L1763: 				return js_ast.Property{}, false
		js_parser.go#L1858: 			return js_ast.Property{
		js_parser.go#L1921: 		return js_ast.Property{
		js_parser.go#L1979: 			return js_ast.Property{}, false
		js_parser.go#L2046: 		return js_ast.Property{
		js_parser.go#L2060: 	return js_ast.Property{
		js_parser.go#L2585: 		properties := make([]js_ast.Property, len(b.Properties))
		js_parser.go#L2592: 			properties[i] = js_ast.Property{
		js_parser.go#L3026: 		properties := []js_ast.Property{}
		js_parser.go#L3038: 				properties = append(properties, js_ast.Property{
		js_parser.go#L4090: 	properties := []js_ast.Property{}
		js_parser.go#L4121: 				properties = append(properties, js_ast.Property{
		js_parser.go#L4131: 				properties = append(properties, js_ast.Property{
		js_parser.go#L4829: 	properties := []js_ast.Property{}
		js_parser.go#L11050: 				var properties []js_ast.Property
		js_parser_lower.go#L919: 	properties := []js_ast.Property{}
		js_parser_lower.go#L942: 			properties = []js_ast.Property{}
		js_parser_lower.go#L1300: 		before []js_ast.Property,
		js_parser_lower.go#L1375: 		upToSplit []js_ast.Property,
		js_parser_lower.go#L1376: 		afterSplit []js_ast.Property,
		js_parser_lower.go#L2003: 			class.Properties = append(class.Properties, js_ast.Property{
		json_parser.go#L98: 		properties := []js_ast.Property{}
		json_parser.go#L130: 			property := js_ast.Property{

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1084: func (p *printer) printProperty(item js_ast.Property) {