(node)
| 112598 | emitEmbeddedStatement(node, node.statement); |
| 112599 | } |
| 112600 | function emitForBinding(node) { |
| 112601 | if (node !== undefined) { |
| 112602 | if (node.kind === 255 /* SyntaxKind.VariableDeclarationList */) { |
| 112603 | emit(node); |
| 112604 | } |
| 112605 | else { |
| 112606 | emitExpression(node); |
| 112607 | } |
| 112608 | } |
| 112609 | } |
| 112610 | function emitContinueStatement(node) { |
| 112611 | emitTokenWithComment(86 /* SyntaxKind.ContinueKeyword */, node.pos, writeKeyword, node); |
| 112612 | emitWithLeadingSpace(node.label); |
no test coverage detected