(block: lua.Block)
| 287 | } |
| 288 | |
| 289 | protected printBlock(block: lua.Block): SourceNode { |
| 290 | return this.concatNodes(...this.printStatementArray(block.statements)); |
| 291 | } |
| 292 | |
| 293 | private statementMayRequireSemiColon(statement: lua.Statement): boolean { |
| 294 | // Types of statements that could create ambiguous syntax if followed by parenthesis |
no test coverage detected