| 561 | } |
| 562 | |
| 563 | txSlot* fxGetModule(txMachine* the, txSlot* realm, txID moduleID, txFlag moduleFlag) |
| 564 | { |
| 565 | txSlot* result = mxBehaviorGetProperty(the, mxOwnModules(realm)->value.reference, moduleID, 0, XS_ANY); |
| 566 | if (result) |
| 567 | fxCheckModuleFlag(the, moduleID, mxModuleInternal(result)->flag, moduleFlag); |
| 568 | return result; |
| 569 | } |
| 570 | |
| 571 | void fxLinkCircularities(txMachine* the, txSlot* module, txSlot* circularities, txSlot* exports) |
| 572 | { |
no test coverage detected