| 703 | } |
| 704 | |
| 705 | void fxForInForOfNodeHoist(void* it, void* param) |
| 706 | { |
| 707 | txForInForOfNode* self = it; |
| 708 | self->scope = fxScopeNew(param, it, XS_TOKEN_BLOCK); |
| 709 | fxNodeDispatchHoist(self->reference, param); |
| 710 | fxNodeDispatchHoist(self->expression, param); |
| 711 | fxNodeDispatchHoist(self->statement, param); |
| 712 | fxScopeHoisted(self->scope, param); |
| 713 | } |
| 714 | |
| 715 | void fxFunctionNodeHoist(void* it, void* param) |
| 716 | { |
nothing calls this directly
no test coverage detected