()
| 92 | } |
| 93 | |
| 94 | override execute(): null { |
| 95 | const expr = tcbExpression(this.expression, this.tcb, this.scope); |
| 96 | // Wrap in an if-statement to enable TS2774 for uninvoked signals/functions. |
| 97 | this.scope.addStatement(new TcbExpr(`if (${expr.print()}) {}`)); |
| 98 | return null; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | export class TcbExpressionTranslator { |
nothing calls this directly
no test coverage detected