| 877 | } |
| 878 | |
| 879 | void fxWithNodeHoist(void* it, void* param) |
| 880 | { |
| 881 | txWithNode* self = it; |
| 882 | txHoister* hoister = param; |
| 883 | fxNodeDispatchHoist(self->expression, param); |
| 884 | self->scope = fxScopeNew(param, it, XS_TOKEN_WITH); |
| 885 | fxScopeEval(hoister->scope); |
| 886 | fxNodeDispatchHoist(self->statement, param); |
| 887 | fxScopeHoisted(self->scope, param); |
| 888 | } |
| 889 | |
| 890 | void fxNodeDispatchBind(void* it, void* param) |
| 891 | { |
nothing calls this directly
no test coverage detected