| 868 | } |
| 869 | |
| 870 | void fxSwitchNodeHoist(void* it, void* param) |
| 871 | { |
| 872 | txSwitchNode* self = it; |
| 873 | fxNodeDispatchHoist(self->expression, param); |
| 874 | self->scope = fxScopeNew(param, it, XS_TOKEN_BLOCK); |
| 875 | fxNodeListDistribute(self->items, fxNodeDispatchHoist, param); |
| 876 | fxScopeHoisted(self->scope, param); |
| 877 | } |
| 878 | |
| 879 | void fxWithNodeHoist(void* it, void* param) |
| 880 | { |
nothing calls this directly
no test coverage detected