| 1218 | } |
| 1219 | |
| 1220 | void fxParamsNodeBind(void* it, void* param) |
| 1221 | { |
| 1222 | txParamsNode* self = it; |
| 1223 | if (self->flags & mxSpreadFlag) { |
| 1224 | fxBinderPushVariables(param, 1); |
| 1225 | fxNodeListDistribute(self->items, fxNodeDispatchBind, param); |
| 1226 | fxBinderPopVariables(param, 1); |
| 1227 | } |
| 1228 | else |
| 1229 | fxNodeListDistribute(self->items, fxNodeDispatchBind, param); |
| 1230 | } |
| 1231 | |
| 1232 | void fxParamsBindingNodeBind(void* it, void* param) |
| 1233 | { |
nothing calls this directly
no test coverage detected