(...chunks: SourceChunk[])
| 283 | } |
| 284 | |
| 285 | protected concatNodes(...chunks: SourceChunk[]): SourceNode { |
| 286 | return new SourceNode(null, null, this.relativeSourcePath, chunks); |
| 287 | } |
| 288 | |
| 289 | protected printBlock(block: lua.Block): SourceNode { |
| 290 | return this.concatNodes(...this.printStatementArray(block.statements)); |
no outgoing calls
no test coverage detected