| 908 | } |
| 909 | |
| 910 | void fxArrayNodeBind(void* it, void* param) |
| 911 | { |
| 912 | txArrayNode* self = it; |
| 913 | fxBinderPushVariables(param, 1); |
| 914 | if (self->flags & mxSpreadFlag) { |
| 915 | fxBinderPushVariables(param, 2); |
| 916 | fxNodeListDistribute(self->items, fxNodeDispatchBind, param); |
| 917 | fxBinderPopVariables(param, 2); |
| 918 | } |
| 919 | else |
| 920 | fxNodeListDistribute(self->items, fxNodeDispatchBind, param); |
| 921 | fxBinderPopVariables(param, 1); |
| 922 | } |
| 923 | |
| 924 | void fxArrayBindingNodeBind(void* it, void* param) |
| 925 | { |
nothing calls this directly
no test coverage detected