| 2575 | } |
| 2576 | |
| 2577 | void fxCatchNodeCode(void* it, void* param) |
| 2578 | { |
| 2579 | txCatchNode* self = it; |
| 2580 | if (self->parameter) { |
| 2581 | fxScopeCodingBlock(self->scope, param); |
| 2582 | fxNodeDispatchCodeReference(self->parameter, param, 0); |
| 2583 | fxCoderAddByte(param, 1, XS_CODE_EXCEPTION); |
| 2584 | fxNodeDispatchCodeAssign(self->parameter, param, 0); |
| 2585 | fxCoderAddByte(param, -1, XS_CODE_POP); |
| 2586 | fxScopeCodingBlock(self->statementScope, param); |
| 2587 | fxScopeCodeDefineNodes(self->statementScope, param); |
| 2588 | fxScopeCodeUsingStatement(self->statementScope, param, self->statement); |
| 2589 | fxScopeCoded(self->statementScope, param); |
| 2590 | fxScopeCoded(self->scope, param); |
| 2591 | } |
| 2592 | else { |
| 2593 | fxScopeCodingBlock(self->statementScope, param); |
| 2594 | fxScopeCodeDefineNodes(self->statementScope, param); |
| 2595 | fxScopeCodeUsingStatement(self->statementScope, param, self->statement); |
| 2596 | fxScopeCoded(self->statementScope, param); |
| 2597 | } |
| 2598 | } |
| 2599 | |
| 2600 | void fxChainNodeCode(void* it, void* param) |
| 2601 | { |
nothing calls this directly
no test coverage detected