(node, modifiers, name, questionToken, typeParameters, parameters, type)
| 23333 | } |
| 23334 | // @api |
| 23335 | function updateMethodSignature(node, modifiers, name, questionToken, typeParameters, parameters, type) { |
| 23336 | return node.modifiers !== modifiers |
| 23337 | || node.name !== name |
| 23338 | || node.questionToken !== questionToken |
| 23339 | || node.typeParameters !== typeParameters |
| 23340 | || node.parameters !== parameters |
| 23341 | || node.type !== type |
| 23342 | ? updateBaseSignatureDeclaration(createMethodSignature(modifiers, name, questionToken, typeParameters, parameters, type), node) |
| 23343 | : node; |
| 23344 | } |
| 23345 | // @api |
| 23346 | function createMethodDeclaration(decorators, modifiers, asteriskToken, name, questionToken, typeParameters, parameters, type, body) { |
| 23347 | var node = createBaseFunctionLikeDeclaration(169 /* SyntaxKind.MethodDeclaration */, decorators, modifiers, name, typeParameters, parameters, type, body); |
no test coverage detected
searching dependent graphs…