| 953 | } |
| 954 | |
| 955 | void fxLinkNamespace(txMachine* the, txSlot* module, txSlot* transfer) |
| 956 | { |
| 957 | txSlot* export = mxTransferClosure(transfer); |
| 958 | mxCheck(the, export->kind == XS_EXPORT_KIND); |
| 959 | export->value.export.closure = fxDuplicateSlot(the, module); |
| 960 | export->value.export.closure->ID = XS_NO_ID; |
| 961 | } |
| 962 | |
| 963 | void fxLinkTransfer(txMachine* the, txSlot* module, txID importID, txSlot* transfer) |
| 964 | { |
no test coverage detected