| 4757 | } |
| 4758 | |
| 4759 | txBoolean fxIsSameReference(txMachine* the, txSlot* a, txSlot* b) |
| 4760 | { |
| 4761 | a = a->value.reference; |
| 4762 | b = b->value.reference; |
| 4763 | if (a == b) |
| 4764 | return 1; |
| 4765 | #if mxAliasInstance |
| 4766 | if (a->ID) { |
| 4767 | txSlot* alias = the->aliasArray[a->ID]; |
| 4768 | if (alias) { |
| 4769 | a = alias; |
| 4770 | if (a == b) |
| 4771 | return 1; |
| 4772 | } |
| 4773 | } |
| 4774 | if (b->ID) { |
| 4775 | txSlot* alias = the->aliasArray[b->ID]; |
| 4776 | if (alias) { |
| 4777 | b = alias; |
| 4778 | if (a == b) |
| 4779 | return 1; |
| 4780 | } |
| 4781 | } |
| 4782 | #endif |
| 4783 | return 0; |
| 4784 | } |
| 4785 | |
| 4786 | txBoolean fxIsSameSlot(txMachine* the, txSlot* a, txSlot* b) |
| 4787 | { |
no outgoing calls
no test coverage detected