github.com/evanw/esbuild/internal/js_ast.STry.Catch (field)

14 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1089: 	Catch   *Catch

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5604: 			Catch:   catch,
		js_parser.go#L8457: 		if s.Catch != nil {
		js_parser.go#L8458: 			p.pushScopeForVisitPass(js_ast.ScopeBlock, s.Catch.Loc)
		js_parser.go#L8459: 			if s.Catch.Binding != nil {
		js_parser.go#L8460: 				p.visitBinding(*s.Catch.Binding, bindingOpts{})
		js_parser.go#L8462: 			s.Catch.Body = p.visitStmts(s.Catch.Body, stmtsNormal)
		js_parser.go#L8463: 			p.lowerObjectRestInCatchBinding(s.Catch)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2791: 		if s.Catch != nil {
		js_printer.go#L2794: 			if s.Catch.Binding != nil {
		js_printer.go#L2797: 				p.printBinding(*s.Catch.Binding)
		js_printer.go#L2801: 			p.printBlock(s.Catch.Loc, s.Catch.Body)