| 543 | } |
| 544 | |
| 545 | txBoolean fx_deepEqualProperties(txMachine* the, txSlot* limit, txBoolean strict, txID id) |
| 546 | { |
| 547 | txSlot* left = the->stack + 1; |
| 548 | txSlot* right = the->stack; |
| 549 | mxPushSlot(left); |
| 550 | mxGetID(id); |
| 551 | mxPushSlot(right); |
| 552 | mxGetID(id); |
| 553 | return fx_deepEqualSlots(the, limit, strict); |
| 554 | } |
| 555 | |
| 556 | txBoolean fx_deepEqualSlots(txMachine* the, txSlot* limit, txBoolean strict) |
| 557 | { |
no test coverage detected