| 689 | } |
| 690 | |
| 691 | void fxForNodeHoist(void* it, void* param) |
| 692 | { |
| 693 | txForNode* self = it; |
| 694 | self->scope = fxScopeNew(param, it, XS_TOKEN_BLOCK); |
| 695 | if (self->initialization) |
| 696 | fxNodeDispatchHoist(self->initialization, param); |
| 697 | if (self->expression) |
| 698 | fxNodeDispatchHoist(self->expression, param); |
| 699 | if (self->iteration) |
| 700 | fxNodeDispatchHoist(self->iteration, param); |
| 701 | fxNodeDispatchHoist(self->statement, param); |
| 702 | fxScopeHoisted(self->scope, param); |
| 703 | } |
| 704 | |
| 705 | void fxForInForOfNodeHoist(void* it, void* param) |
| 706 | { |
nothing calls this directly
no test coverage detected