()
| 34 | } |
| 35 | |
| 36 | override execute(): null { |
| 37 | const root = this.generateBranch(0); |
| 38 | root && this.scope.addStatement(root); |
| 39 | return null; |
| 40 | } |
| 41 | |
| 42 | private generateBranch(index: number): TcbExpr | undefined { |
| 43 | const branch = this.block.branches[index]; |
nothing calls this directly
no test coverage detected