(opts)
| 1028 | Return.kind = "return"; |
| 1029 | class Try extends BlockNode { |
| 1030 | render(opts) { |
| 1031 | let code = "try" + super.render(opts); |
| 1032 | if (this.catch) |
| 1033 | code += this.catch.render(opts); |
| 1034 | if (this.finally) |
| 1035 | code += this.finally.render(opts); |
| 1036 | return code; |
| 1037 | } |
| 1038 | optimizeNodes() { |
| 1039 | var _a, _b; |
| 1040 | super.optimizeNodes(); |