| 646 | } |
| 647 | |
| 648 | void fxSwitchNodeDistribute(void* it, txNodeCall call, void* param) |
| 649 | { |
| 650 | txSwitchNode* self = it; |
| 651 | (*call)(self->expression, param); |
| 652 | fxNodeListDistribute(self->items, call, param); |
| 653 | } |
| 654 | |
| 655 | void fxTemplateNodeDistribute(void* it, txNodeCall call, void* param) |
| 656 | { |
nothing calls this directly
no test coverage detected