(input)
| 109255 | } |
| 109256 | } |
| 109257 | function transformVariableStatement(input) { |
| 109258 | if (!ts.forEach(input.declarationList.declarations, getBindingNameVisible)) |
| 109259 | return; |
| 109260 | var nodes = ts.visitNodes(input.declarationList.declarations, visitDeclarationSubtree); |
| 109261 | if (!ts.length(nodes)) |
| 109262 | return; |
| 109263 | return factory.updateVariableStatement(input, factory.createNodeArray(ensureModifiers(input)), factory.updateVariableDeclarationList(input.declarationList, nodes)); |
| 109264 | } |
| 109265 | function recreateBindingPattern(d) { |
| 109266 | return ts.flatten(ts.mapDefined(d.elements, function (e) { return recreateBindingElement(e); })); |
| 109267 | } |
no test coverage detected
searching dependent graphs…