| 4555 | |
| 4556 | |
| 4557 | txBoolean fxRunDelete(txMachine* the, txSlot* instance, txID id, txIndex index) |
| 4558 | { |
| 4559 | txBoolean result; |
| 4560 | fxBeginHost(the); |
| 4561 | mxCheck(the, instance->kind == XS_INSTANCE_KIND); |
| 4562 | result = mxBehaviorDeleteProperty(the, instance, id, index); |
| 4563 | fxEndHost(the); |
| 4564 | return result; |
| 4565 | } |
| 4566 | |
| 4567 | void fxRunDerived(txMachine* the) |
| 4568 | { |
no test coverage detected