(node, modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body)
| 24314 | } |
| 24315 | // @api |
| 24316 | function updateArrowFunction(node, modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body) { |
| 24317 | return node.modifiers !== modifiers |
| 24318 | || node.typeParameters !== typeParameters |
| 24319 | || node.parameters !== parameters |
| 24320 | || node.type !== type |
| 24321 | || node.equalsGreaterThanToken !== equalsGreaterThanToken |
| 24322 | || node.body !== body |
| 24323 | ? updateBaseFunctionLikeDeclaration(createArrowFunction(modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body), node) |
| 24324 | : node; |
| 24325 | } |
| 24326 | // @api |
| 24327 | function createDeleteExpression(expression) { |
| 24328 | var node = createBaseExpression(215 /* SyntaxKind.DeleteExpression */); |
no test coverage detected
searching dependent graphs…