(node)
| 102907 | } |
| 102908 | } |
| 102909 | function visitWhileStatement(node) { |
| 102910 | if (inStatementContainingYield) { |
| 102911 | beginScriptLoopBlock(); |
| 102912 | node = ts.visitEachChild(node, visitor, context); |
| 102913 | endLoopBlock(); |
| 102914 | return node; |
| 102915 | } |
| 102916 | else { |
| 102917 | return ts.visitEachChild(node, visitor, context); |
| 102918 | } |
| 102919 | } |
| 102920 | function transformAndEmitForStatement(node) { |
| 102921 | if (containsYield(node)) { |
| 102922 | // [source] |
no test coverage detected
searching dependent graphs…