| 2598 | } |
| 2599 | |
| 2600 | void fxChainNodeCode(void* it, void* param) |
| 2601 | { |
| 2602 | txUnaryExpressionNode* self = it; |
| 2603 | txCoder* coder = param; |
| 2604 | txTargetCode* chainTarget = coder->chainTarget; |
| 2605 | coder->chainTarget = fxCoderCreateTarget(param); |
| 2606 | fxNodeDispatchCode(self->right, param); |
| 2607 | fxCoderAdd(param, 0, coder->chainTarget); |
| 2608 | coder->chainTarget = chainTarget; |
| 2609 | } |
| 2610 | |
| 2611 | txFlag fxChainNodeCodeThis(void* it, void* param, txFlag flag) |
| 2612 | { |
nothing calls this directly
no test coverage detected