(node)
| 93159 | return updated; |
| 93160 | } |
| 93161 | function visitConstructor(node) { |
| 93162 | if (!shouldEmitFunctionLikeDeclaration(node)) { |
| 93163 | return undefined; |
| 93164 | } |
| 93165 | return factory.updateConstructorDeclaration(node, |
| 93166 | /*decorators*/ undefined, |
| 93167 | /*modifiers*/ undefined, ts.visitParameterList(node.parameters, visitor, context), transformConstructorBody(node.body, node)); |
| 93168 | } |
| 93169 | function transformConstructorBody(body, constructor) { |
| 93170 | var parametersWithPropertyAssignments = constructor && |
| 93171 | ts.filter(constructor.parameters, function (p) { return ts.isParameterPropertyDeclaration(p, constructor); }); |
no test coverage detected
searching dependent graphs…