(node, modifiers, asteriskToken, name, typeParameters, parameters, type, body)
| 24288 | } |
| 24289 | // @api |
| 24290 | function updateFunctionExpression(node, modifiers, asteriskToken, name, typeParameters, parameters, type, body) { |
| 24291 | return node.name !== name |
| 24292 | || node.modifiers !== modifiers |
| 24293 | || node.asteriskToken !== asteriskToken |
| 24294 | || node.typeParameters !== typeParameters |
| 24295 | || node.parameters !== parameters |
| 24296 | || node.type !== type |
| 24297 | || node.body !== body |
| 24298 | ? updateBaseFunctionLikeDeclaration(createFunctionExpression(modifiers, asteriskToken, name, typeParameters, parameters, type, body), node) |
| 24299 | : node; |
| 24300 | } |
| 24301 | // @api |
| 24302 | function createArrowFunction(modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body) { |
| 24303 | var node = createBaseFunctionLikeDeclaration(214 /* SyntaxKind.ArrowFunction */, |
no test coverage detected
searching dependent graphs…