| 398 | } |
| 399 | |
| 400 | void fxBlockNodeHoist(void* it, void* param) |
| 401 | { |
| 402 | txBlockNode* self = it; |
| 403 | self->scope = fxScopeNew(param, it, XS_TOKEN_BLOCK); |
| 404 | fxNodeDispatchHoist(self->statement, param); |
| 405 | fxScopeHoisted(self->scope, param); |
| 406 | } |
| 407 | |
| 408 | void fxBodyNodeHoist(void* it, void* param) |
| 409 | { |
nothing calls this directly
no test coverage detected