(kind, decorators, modifiers, name, typeParameters, parameters, type, body)
| 22839 | return update(updated, original); |
| 22840 | } |
| 22841 | function createBaseFunctionLikeDeclaration(kind, decorators, modifiers, name, typeParameters, parameters, type, body) { |
| 22842 | var node = createBaseSignatureDeclaration(kind, decorators, modifiers, name, typeParameters, parameters, type); |
| 22843 | node.body = body; |
| 22844 | node.transformFlags |= propagateChildFlags(node.body) & ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; |
| 22845 | if (!body) |
| 22846 | node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; |
| 22847 | return node; |
| 22848 | } |
| 22849 | function updateBaseFunctionLikeDeclaration(updated, original) { |
| 22850 | // copy children used only for error reporting |
| 22851 | if (original.exclamationToken) |
no test coverage detected
searching dependent graphs…