| 4682 | } |
| 4683 | |
| 4684 | void fxRunIn(txMachine* the) |
| 4685 | { |
| 4686 | txSlot* left = the->stack + 1; |
| 4687 | txSlot* right = the->stack; |
| 4688 | fxBeginHost(the); |
| 4689 | mxPushSlot(right); |
| 4690 | mxPushSlot(left); |
| 4691 | left->value.boolean = fxHasAt(the); |
| 4692 | left->kind = XS_BOOLEAN_KIND; |
| 4693 | fxEndHost(the); |
| 4694 | mxPop(); |
| 4695 | } |
| 4696 | |
| 4697 | void fxRunInstanceOf(txMachine* the) |
| 4698 | { |
no test coverage detected