| 1193 | } |
| 1194 | |
| 1195 | void fxCoderAdjustScope(txCoder* self, txTargetCode* target) |
| 1196 | { |
| 1197 | txInteger count = self->scopeLevel - target->scopeLevel; |
| 1198 | if (count) |
| 1199 | fxCoderAddIndex(self, 0, XS_CODE_UNWIND_1, count); |
| 1200 | } |
| 1201 | |
| 1202 | txTargetCode* fxCoderAliasTargets(txCoder* self, txTargetCode* target) |
| 1203 | { |
no test coverage detected