| 811 | } |
| 812 | |
| 813 | void fxModuleNodeHoist(void* it, void* param) |
| 814 | { |
| 815 | txModuleNode* self = it; |
| 816 | txHoister* hoister = param; |
| 817 | hoister->functionScope = hoister->bodyScope = self->scope = fxScopeNew(param, it, XS_TOKEN_MODULE); // @@ |
| 818 | hoister->environmentNode = it; |
| 819 | fxNodeDispatchHoist(self->body, param); |
| 820 | hoister->environmentNode = C_NULL; |
| 821 | fxScopeHoisted(self->scope, param); |
| 822 | } |
| 823 | |
| 824 | void fxParamsBindingNodeHoist(void* it, void* param) |
| 825 | { |
nothing calls this directly
no test coverage detected