| 1023 | } |
| 1024 | |
| 1025 | void fxDefineNodeBind(void* it, void* param) |
| 1026 | { |
| 1027 | txDefineNode* self = it; |
| 1028 | txBinder* binder = param; |
| 1029 | if (self->flags & mxDefineNodeBoundFlag) |
| 1030 | return; |
| 1031 | self->flags |= mxDefineNodeBoundFlag; |
| 1032 | fxScopeLookup(binder->scope, (txAccessNode*)self, 0); |
| 1033 | fxNodeDispatchBind(self->initializer, param); |
| 1034 | } |
| 1035 | |
| 1036 | void fxDelegateNodeBind(void* it, void* param) |
| 1037 | { |
nothing calls this directly
no test coverage detected