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

10 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L335: 	TSDecorators []Expr

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L4886: 		TSDecorators: classOpts.tsDecorators,
		js_parser.go#L8953: 	class.TSDecorators = p.visitTSDecorators(class.TSDecorators)
		js_parser_lower.go#L1678: 							decorators = &class.TSDecorators
		js_parser_lower.go#L2099: 			len(class.TSDecorators) > 0)
		js_parser_lower.go#L2113: 	if len(class.TSDecorators) > 0 || hasPotentialShadowCaptureEscape || avoidTDZ {
		js_parser_lower.go#L2122: 		if hasPotentialShadowCaptureEscape && len(class.TSDecorators) == 0 {
		js_parser_lower.go#L2228: 	if len(class.TSDecorators) > 0 {
		js_parser_lower.go#L2232: 				{Loc: classLoc, Data: &js_ast.EArray{Items: class.TSDecorators}},