(node, statements)
| 24779 | } |
| 24780 | // @api |
| 24781 | function updateBlock(node, statements) { |
| 24782 | return node.statements !== statements |
| 24783 | ? update(createBlock(statements, node.multiLine), node) |
| 24784 | : node; |
| 24785 | } |
| 24786 | // @api |
| 24787 | function createVariableStatement(modifiers, declarationList) { |
| 24788 | var node = createBaseDeclaration(237 /* SyntaxKind.VariableStatement */, /*decorators*/ undefined, modifiers); |
nothing calls this directly
no test coverage detected