(statement: lua.DoStatement)
| 406 | } |
| 407 | |
| 408 | public printDoStatement(statement: lua.DoStatement): SourceNode { |
| 409 | const chunks: SourceChunk[] = []; |
| 410 | |
| 411 | chunks.push(this.indent("do\n")); |
| 412 | this.pushIndent(); |
| 413 | chunks.push(...this.printStatementArray(statement.statements)); |
| 414 | this.popIndent(); |
| 415 | chunks.push(this.indent("end")); |
| 416 | |
| 417 | return this.concatNodes(...chunks); |
| 418 | } |
| 419 | |
| 420 | public printVariableDeclarationStatement(statement: lua.VariableDeclarationStatement): SourceNode { |
| 421 | const chunks: SourceChunk[] = []; |
no test coverage detected