| 940 | } |
| 941 | |
| 942 | void fxBindingNodeBind(void* it, void* param) |
| 943 | { |
| 944 | txBindingNode* self = it; |
| 945 | txToken token = self->target->description->token; |
| 946 | fxNodeDispatchBind(self->target, param); |
| 947 | if ((token == XS_TOKEN_ACCESS) || (token == XS_TOKEN_ARG) || (token == XS_TOKEN_CONST) || (token == XS_TOKEN_LET) || (token == XS_TOKEN_USING) || (token == XS_TOKEN_VAR)) |
| 948 | fxFunctionNodeRename(self->initializer, ((txAccessNode*)self->target)->symbol); |
| 949 | fxNodeDispatchBind(self->initializer, param); |
| 950 | } |
| 951 | |
| 952 | void fxBlockNodeBind(void* it, void* param) |
| 953 | { |
nothing calls this directly
no test coverage detected