(updated, original)
| 22833 | return node; |
| 22834 | } |
| 22835 | function updateBaseSignatureDeclaration(updated, original) { |
| 22836 | // copy children used only for error reporting |
| 22837 | if (original.typeArguments) |
| 22838 | updated.typeArguments = original.typeArguments; |
| 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; |
no test coverage detected