(statement: lua.ContinueStatement)
| 577 | } |
| 578 | |
| 579 | public printContinueStatement(statement: lua.ContinueStatement): SourceNode { |
| 580 | return this.createSourceNode(statement, this.indent("continue")); |
| 581 | } |
| 582 | |
| 583 | public printExpressionStatement(statement: lua.ExpressionStatement): SourceNode { |
| 584 | return this.createSourceNode(statement, [this.indent(), this.printExpression(statement.expression)]); |
no test coverage detected