| 950 | } |
| 951 | |
| 952 | void fxBlockNodeBind(void* it, void* param) |
| 953 | { |
| 954 | txBlockNode* self = it; |
| 955 | fxScopeBinding(self->scope, param); |
| 956 | fxScopeBindDefineNodes(self->scope, param); |
| 957 | if (self->scope->disposableNodeCount) |
| 958 | fxBinderPushVariables(param, 2); |
| 959 | fxNodeDispatchBind(self->statement, param); |
| 960 | if (self->scope->disposableNodeCount) |
| 961 | fxBinderPopVariables(param, 2); |
| 962 | fxScopeBound(self->scope, param); |
| 963 | } |
| 964 | |
| 965 | void fxCatchNodeBind(void* it, void* param) |
| 966 | { |
nothing calls this directly
no test coverage detected