(e: CallExpression)
| 62 | } |
| 63 | |
| 64 | protected visitCall(e: CallExpression): VisitResult { |
| 65 | for (const arg of e.args ?? []) { |
| 66 | const r = this.visit(arg); |
| 67 | if (r?.abort) { |
| 68 | return r; |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | protected visitBinding(_e: BindingExpression): VisitResult {} |
| 74 |