(node, modifiers, declarationList)
| 24796 | } |
| 24797 | // @api |
| 24798 | function updateVariableStatement(node, modifiers, declarationList) { |
| 24799 | return node.modifiers !== modifiers |
| 24800 | || node.declarationList !== declarationList |
| 24801 | ? update(createVariableStatement(modifiers, declarationList), node) |
| 24802 | : node; |
| 24803 | } |
| 24804 | // @api |
| 24805 | function createEmptyStatement() { |
| 24806 | return createBaseNode(236 /* SyntaxKind.EmptyStatement */); |
no test coverage detected