(ast: Chain)
| 95 | } |
| 96 | |
| 97 | visitChain(ast: Chain): TcbExpr { |
| 98 | const elements = ast.expressions.map((expr) => this.translate(expr).print()); |
| 99 | const node = new TcbExpr(elements.join(', ')); |
| 100 | node.wrapForTypeChecker(); |
| 101 | node.addParseSpanInfo(ast.sourceSpan); |
| 102 | return node; |
| 103 | } |
| 104 | |
| 105 | visitConditional(ast: Conditional): TcbExpr { |
| 106 | const condExpr = this.translate(ast.condition); |
nothing calls this directly
no test coverage detected