(expressions: TcbExpr[], singleLine = false)
| 129 | * @param singleLine Whether to print them on a single line or across multiple. Defaults to multiple. |
| 130 | */ |
| 131 | export function getStatementsBlock(expressions: TcbExpr[], singleLine = false): string { |
| 132 | let result = ''; |
| 133 | for (const expr of expressions) { |
| 134 | result += `${expr.print()};${singleLine ? ' ' : '\n'}`; |
| 135 | } |
| 136 | return result; |
| 137 | } |
no test coverage detected
searching dependent graphs…