github.com/evanw/esbuild/internal/js_ast.Class.Properties (field)

20 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L339: 	Properties   []Property

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L4890: 		Properties:   properties,
		js_parser.go#L9004: 	for i, property := range class.Properties {
		js_parser.go#L9013: 			class.Properties[i].Key = key
		js_parser.go#L9018: 					class.Properties[i].IsComputed = false
		js_parser.go#L12218: 	for _, property := range class.Properties {
		js_parser_lower.go#L1665: 	for _, prop := range class.Properties {
		js_parser_lower.go#L1989: 		class.Properties[end] = prop
		js_parser_lower.go#L1994: 	class.Properties = class.Properties[:end]
		js_parser_lower.go#L2003: 			class.Properties = append(class.Properties, js_ast.Property{
		js_parser_lower.go#L2036: 		for i := 0; i < len(class.Properties); i++ {
		js_parser_lower.go#L2037: 			if class.Properties[i].Value != nil && class.Properties[i].Value.Data == ctor {
		js_parser_lower.go#L2038: 				ctorProp := class.Properties[i]
		js_parser_lower.go#L2040: 					class.Properties[j] = class.Properties[j-1]
		js_parser_lower.go#L2042: 				class.Properties[0] = ctorProp

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1065: 	for _, item := range class.Properties {