(node)
| 135675 | return undefined; |
| 135676 | } |
| 135677 | function aggregateAllBreakAndContinueStatements(node) { |
| 135678 | return ts.isBreakOrContinueStatement(node) ? [node] : ts.isFunctionLike(node) ? undefined : flatMapChildren(node, aggregateAllBreakAndContinueStatements); |
| 135679 | } |
| 135680 | function flatMapChildren(node, cb) { |
| 135681 | var result = []; |
| 135682 | node.forEachChild(function (child) { |
no test coverage detected