(kind, decorators, modifiers, name, typeParameters, parameters, type)
| 22822 | return node; |
| 22823 | } |
| 22824 | function createBaseSignatureDeclaration(kind, decorators, modifiers, name, typeParameters, parameters, type) { |
| 22825 | var node = createBaseGenericNamedDeclaration(kind, decorators, modifiers, name, typeParameters); |
| 22826 | node.parameters = createNodeArray(parameters); |
| 22827 | node.type = type; |
| 22828 | node.transformFlags |= |
| 22829 | propagateChildrenFlags(node.parameters) | |
| 22830 | propagateChildFlags(node.type); |
| 22831 | if (type) |
| 22832 | node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; |
| 22833 | return node; |
| 22834 | } |
| 22835 | function updateBaseSignatureDeclaration(updated, original) { |
| 22836 | // copy children used only for error reporting |
| 22837 | if (original.typeArguments) |
no test coverage detected
searching dependent graphs…