| 665 | |
| 666 | |
| 667 | txSlot* fxCheckHostObject(txMachine* the, txSlot* it) |
| 668 | { |
| 669 | txSlot* result = C_NULL; |
| 670 | if (it->kind == XS_REFERENCE_KIND) { |
| 671 | it = it->value.reference; |
| 672 | if (it->next) { |
| 673 | it = it->next; |
| 674 | if ((it->flag & XS_INTERNAL_FLAG) && (it->kind == XS_HOST_KIND)) |
| 675 | result = it; |
| 676 | } |
| 677 | } |
| 678 | return result; |
| 679 | } |
| 680 | |
| 681 | txSlot* fxNewHostObject(txMachine* the, txDestructor theDestructor) |
| 682 | { |
no outgoing calls
no test coverage detected