| 4539 | } |
| 4540 | |
| 4541 | txBoolean fxRunDefine(txMachine* the, txSlot* instance, txSlot* check, txID id, txIndex index, txSlot* slot, txFlag mask) |
| 4542 | { |
| 4543 | txBoolean result; |
| 4544 | if (check) { |
| 4545 | result = gxDefaults.definePrivateProperty(the, instance, check, id, slot, mask); |
| 4546 | } |
| 4547 | else { |
| 4548 | fxBeginHost(the); |
| 4549 | mxCheck(the, instance->kind == XS_INSTANCE_KIND); |
| 4550 | result = mxBehaviorDefineOwnProperty(the, instance, id, index, slot, mask); |
| 4551 | fxEndHost(the); |
| 4552 | } |
| 4553 | return result; |
| 4554 | } |
| 4555 | |
| 4556 | |
| 4557 | txBoolean fxRunDelete(txMachine* the, txSlot* instance, txID id, txIndex index) |
no test coverage detected