| 2518 | } |
| 2519 | |
| 2520 | void fxBlockNodeCode(void* it, void* param) |
| 2521 | { |
| 2522 | txBlockNode* self = it; |
| 2523 | fxScopeCodingBlock(self->scope, param); |
| 2524 | fxScopeCodeDefineNodes(self->scope, param); |
| 2525 | fxScopeCodeUsingStatement(self->scope, param, self->statement); |
| 2526 | fxScopeCoded(self->scope, param); |
| 2527 | } |
| 2528 | |
| 2529 | void fxBodyNodeCode(void* it, void* param) |
| 2530 | { |
nothing calls this directly
no test coverage detected