()
| 34 | } |
| 35 | |
| 36 | compile(): any { |
| 37 | const F = Function; |
| 38 | const args = this?.args; |
| 39 | const content = this?.content ?? [``]; |
| 40 | const lines = [...content.map((x) => ` ${x}`)]; |
| 41 | // console.log(lines.join("\n")); |
| 42 | return new F(...args, lines.join("\n")) as any; |
| 43 | } |
| 44 | } |