| 1165 | } |
| 1166 | |
| 1167 | void fxModuleNodeBind(void* it, void* param) |
| 1168 | { |
| 1169 | txModuleNode* self = it; |
| 1170 | txBinder* binder = param; |
| 1171 | fxScopeBinding(self->scope, param); |
| 1172 | fxScopeBindDefineNodes(self->scope, param); |
| 1173 | if (self->scope->disposableNodeCount) |
| 1174 | fxBinderPushVariables(param, 2); |
| 1175 | fxNodeDispatchBind(self->body, param); |
| 1176 | if (self->scope->disposableNodeCount) |
| 1177 | fxBinderPopVariables(param, 2); |
| 1178 | fxScopeBound(self->scope, param); |
| 1179 | self->scopeCount = binder->scopeMaximum; |
| 1180 | } |
| 1181 | |
| 1182 | void fxObjectNodeBind(void* it, void* param) |
| 1183 | { |
nothing calls this directly
no test coverage detected