| 813 | } |
| 814 | |
| 815 | void fxMeasureReference(txMachine* the, txSlot* theSlot, txMarshallBuffer* theBuffer, txBoolean alien) |
| 816 | { |
| 817 | if (theSlot->flag & XS_DONT_MARSHALL_FLAG) { |
| 818 | if (alien) |
| 819 | if (theSlot->value.host.variant.destructor != fxReleaseSharedChunk) |
| 820 | fxMeasureThrow(the, theBuffer, "read only object"); |
| 821 | } |
| 822 | else if ((theSlot->flag & XS_MARK_FLAG) == 0) { |
| 823 | mxCheckCStack(); |
| 824 | fxMeasureSlot(the, theSlot, theBuffer, alien); |
| 825 | } |
| 826 | } |
| 827 | |
| 828 | void fxMeasureSlot(txMachine* the, txSlot* theSlot, txMarshallBuffer* theBuffer, txBoolean alien) |
| 829 | { |
no test coverage detected