(node, variableDeclaration, block)
| 26267 | } |
| 26268 | // @api |
| 26269 | function updateCatchClause(node, variableDeclaration, block) { |
| 26270 | return node.variableDeclaration !== variableDeclaration |
| 26271 | || node.block !== block |
| 26272 | ? update(createCatchClause(variableDeclaration, block), node) |
| 26273 | : node; |
| 26274 | } |
| 26275 | // |
| 26276 | // Property assignments |
| 26277 | // |
nothing calls this directly
no test coverage detected