| 1320 | } |
| 1321 | |
| 1322 | void fxSwitchNodeBind(void* it, void* param) |
| 1323 | { |
| 1324 | txSwitchNode* self = it; |
| 1325 | fxNodeDispatchBind(self->expression, param); |
| 1326 | fxScopeBinding(self->scope, param); |
| 1327 | fxScopeBindDefineNodes(self->scope, param); |
| 1328 | if (self->scope->disposableNodeCount) |
| 1329 | fxBinderPushVariables(param, 2); |
| 1330 | fxNodeListDistribute(self->items, fxNodeDispatchBind, param); |
| 1331 | if (self->scope->disposableNodeCount) |
| 1332 | fxBinderPopVariables(param, 2); |
| 1333 | fxScopeBound(self->scope, param); |
| 1334 | } |
| 1335 | |
| 1336 | void fxTargetNodeBind(void* it, void* param) |
| 1337 | { |
nothing calls this directly
no test coverage detected