(node, operand)
| 24418 | } |
| 24419 | // @api |
| 24420 | function updatePostfixUnaryExpression(node, operand) { |
| 24421 | return node.operand !== operand |
| 24422 | ? update(createPostfixUnaryExpression(operand, node.operator), node) |
| 24423 | : node; |
| 24424 | } |
| 24425 | // @api |
| 24426 | function createBinaryExpression(left, operator, right) { |
| 24427 | var node = createBaseExpression(221 /* SyntaxKind.BinaryExpression */); |
nothing calls this directly
no test coverage detected