(block)
| 18573 | return rendered.reduce((lhs, rhs) => x`${lhs} + ${rhs}`); |
| 18574 | } |
| 18575 | render_chunks(block) { |
| 18576 | return this.node.chunks.map((chunk) => { |
| 18577 | if (chunk.type === "Text") { |
| 18578 | return string_literal(chunk.data); |
| 18579 | } |
| 18580 | return chunk.manipulate(block); |
| 18581 | }); |
| 18582 | } |
| 18583 | stringify() { |
| 18584 | if (this.node.is_true) |
| 18585 | return ""; |
no test coverage detected