| 2481 | } |
| 2482 | |
| 2483 | void fxBindingNodeCode(void* it, void* param) |
| 2484 | { |
| 2485 | txBindingNode* self = it; |
| 2486 | txCoder* coder = param; |
| 2487 | |
| 2488 | if (self->target->description->token == XS_TOKEN_ACCESS) { |
| 2489 | fxReportParserError(coder->parser, self->line, "invalid initializer"); |
| 2490 | fxNodeDispatchCode(self->initializer, param); |
| 2491 | return; |
| 2492 | } |
| 2493 | |
| 2494 | fxNodeDispatchCodeReference(self->target, param, 0); |
| 2495 | fxNodeDispatchCode(self->initializer, param); |
| 2496 | fxNodeDispatchCodeAssign(self->target, param, 0); |
| 2497 | fxCoderAddByte(coder, -1, XS_CODE_POP); |
| 2498 | } |
| 2499 | |
| 2500 | void fxBindingNodeCodeAssign(void* it, void* param, txFlag flag) |
| 2501 | { |
nothing calls this directly
no test coverage detected