github.com/evanw/esbuild/internal/js_ast.Property.IsStatic (field)

17 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L291: 	IsStatic     bool

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1925: 			IsStatic:     opts.isStatic,
		js_parser.go#L2051: 			IsStatic:     opts.isStatic,
		js_parser.go#L9038: 			((!property.IsStatic && p.options.unsupportedJSFeatures.Has(compat.ClassField)) ||
		js_parser.go#L9039: 				(property.IsStatic && p.options.unsupportedJSFeatures.Has(compat.ClassStaticField))) {
		js_parser.go#L9055: 			if property.IsStatic && replaceThisInStaticFieldInit {
		js_parser_lower.go#L1703: 			((!prop.IsStatic && p.options.unsupportedJSFeatures.Has(compat.ClassField)) ||
		js_parser_lower.go#L1704: 				(prop.IsStatic && p.options.unsupportedJSFeatures.Has(compat.ClassStaticField)))
		js_parser_lower.go#L1708: 		if !prop.IsMethod && prop.IsStatic && avoidTDZ && shadowRef != js_ast.InvalidRef {
		js_parser_lower.go#L1770: 				if prop.IsStatic {
		js_parser_lower.go#L1784: 				if prop.IsStatic {
		js_parser_lower.go#L1796: 		if !prop.IsMethod && (mustLowerField || (p.options.ts.Parse && !p.options.useDefineForClassFields && (!prop.IsStatic || private == nil))) {
		js_parser_lower.go#L1805: 				if prop.IsStatic {
		js_parser_lower.go#L1873: 				if prop.IsStatic {
		js_parser_lower.go#L1915: 					if prop.IsStatic {
		js_parser_lower.go#L1942: 					if prop.IsStatic {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1091: 	if item.IsStatic {