| 406 | } |
| 407 | |
| 408 | void fxBodyNodeHoist(void* it, void* param) |
| 409 | { |
| 410 | txBlockNode* self = it; |
| 411 | txHoister* hoister = param; |
| 412 | txNode* environmentNode = hoister->environmentNode; |
| 413 | hoister->bodyScope = self->scope = fxScopeNew(param, it, XS_TOKEN_BLOCK); |
| 414 | hoister->environmentNode = it; |
| 415 | fxNodeDispatchHoist(self->statement, param); |
| 416 | hoister->environmentNode = environmentNode; |
| 417 | fxScopeHoisted(self->scope, param); |
| 418 | } |
| 419 | |
| 420 | void fxCallNodeHoist(void* it, void* param) |
| 421 | { |
nothing calls this directly
no test coverage detected