(node)
| 103109 | } |
| 103110 | } |
| 103111 | function visitBreakStatement(node) { |
| 103112 | if (inStatementContainingYield) { |
| 103113 | var label = findBreakTarget(node.label && ts.idText(node.label)); |
| 103114 | if (label > 0) { |
| 103115 | return createInlineBreak(label, /*location*/ node); |
| 103116 | } |
| 103117 | } |
| 103118 | return ts.visitEachChild(node, visitor, context); |
| 103119 | } |
| 103120 | function transformAndEmitReturnStatement(node) { |
| 103121 | emitReturn(ts.visitNode(node.expression, visitor, ts.isExpression), |
| 103122 | /*location*/ node); |
no test coverage detected
searching dependent graphs…