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

9 uses

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

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5605: 			Finally: finally,
		js_parser.go#L8467: 		if s.Finally != nil {
		js_parser.go#L8468: 			p.pushScopeForVisitPass(js_ast.ScopeBlock, s.Finally.Loc)
		js_parser.go#L8469: 			s.Finally.Stmts = p.visitStmts(s.Finally.Stmts, stmtsNormal)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2804: 		if s.Finally != nil {
		js_printer.go#L2808: 			p.printBlock(s.Finally.Loc, s.Finally.Stmts)