(ast: AST, tcb: Context, scope: Scope)
| 35 | * bindings. |
| 36 | */ |
| 37 | export function tcbEventHandlerExpression(ast: AST, tcb: Context, scope: Scope): TcbExpr { |
| 38 | const translator = new TcbEventHandlerTranslator(tcb, scope); |
| 39 | return translator.translate(ast); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * A `TcbOp` which generates code to check event bindings on an element that correspond with the |
no test coverage detected