(node)
| 102869 | } |
| 102870 | } |
| 102871 | function visitDoStatement(node) { |
| 102872 | if (inStatementContainingYield) { |
| 102873 | beginScriptLoopBlock(); |
| 102874 | node = ts.visitEachChild(node, visitor, context); |
| 102875 | endLoopBlock(); |
| 102876 | return node; |
| 102877 | } |
| 102878 | else { |
| 102879 | return ts.visitEachChild(node, visitor, context); |
| 102880 | } |
| 102881 | } |
| 102882 | function transformAndEmitWhileStatement(node) { |
| 102883 | if (containsYield(node)) { |
| 102884 | // [source] |
no test coverage detected
searching dependent graphs…