(statement: lua.BreakStatement)
| 573 | } |
| 574 | |
| 575 | public printBreakStatement(statement: lua.BreakStatement): SourceNode { |
| 576 | return this.createSourceNode(statement, this.indent("break")); |
| 577 | } |
| 578 | |
| 579 | public printContinueStatement(statement: lua.ContinueStatement): SourceNode { |
| 580 | return this.createSourceNode(statement, this.indent("continue")); |
no test coverage detected