| 1101 | } |
| 1102 | |
| 1103 | void fxForInForOfNodeBind(void* it, void* param) |
| 1104 | { |
| 1105 | txForInForOfNode* self = it; |
| 1106 | fxBinderPushVariables(param, 6); |
| 1107 | fxScopeBinding(self->scope, param); |
| 1108 | fxScopeBindDefineNodes(self->scope, param); |
| 1109 | fxNodeDispatchBind(self->reference, param); |
| 1110 | fxNodeDispatchBind(self->expression, param); |
| 1111 | fxNodeDispatchBind(self->statement, param); |
| 1112 | fxScopeBound(self->scope, param); |
| 1113 | fxBinderPopVariables(param, 6); |
| 1114 | } |
| 1115 | |
| 1116 | void fxFunctionNodeBind(void* it, void* param) |
| 1117 | { |
nothing calls this directly
no test coverage detected