| 1289 | } |
| 1290 | |
| 1291 | void fxProgramNodeBind(void* it, void* param) |
| 1292 | { |
| 1293 | txProgramNode* self = it; |
| 1294 | txBinder* binder = param; |
| 1295 | fxScopeBinding(self->scope, param); |
| 1296 | fxScopeBindDefineNodes(self->scope, param); |
| 1297 | fxNodeDispatchBind(self->body, param); |
| 1298 | fxScopeBound(self->scope, param); |
| 1299 | self->scopeCount = binder->scopeMaximum; |
| 1300 | } |
| 1301 | |
| 1302 | void fxSpreadNodeBind(void* it, void* param) |
| 1303 | { |
nothing calls this directly
no test coverage detected