(node, operand)
| 24397 | } |
| 24398 | // @api |
| 24399 | function updatePrefixUnaryExpression(node, operand) { |
| 24400 | return node.operand !== operand |
| 24401 | ? update(createPrefixUnaryExpression(node.operator, operand), node) |
| 24402 | : node; |
| 24403 | } |
| 24404 | // @api |
| 24405 | function createPostfixUnaryExpression(operand, operator) { |
| 24406 | var node = createBaseExpression(220 /* SyntaxKind.PostfixUnaryExpression */); |
nothing calls this directly
no test coverage detected