(node, decorators, modifiers, body)
| 23392 | } |
| 23393 | // @api |
| 23394 | function updateClassStaticBlockDeclaration(node, decorators, modifiers, body) { |
| 23395 | return node.decorators !== decorators |
| 23396 | || node.modifier !== modifiers |
| 23397 | || node.body !== body |
| 23398 | ? update(createClassStaticBlockDeclaration(decorators, modifiers, body), node) |
| 23399 | : node; |
| 23400 | } |
| 23401 | // @api |
| 23402 | function createConstructorDeclaration(decorators, modifiers, parameters, body) { |
| 23403 | var node = createBaseFunctionLikeDeclaration(171 /* SyntaxKind.Constructor */, decorators, modifiers, |
nothing calls this directly
no test coverage detected