| 589 | } |
| 590 | |
| 591 | txSlot* fxNextHostFunctionProperty(txMachine* the, txSlot* property, txCallback call, txInteger length, txID id, txFlag flag) |
| 592 | { |
| 593 | property = property->next = fxNewSlot(the); |
| 594 | property->flag = flag; |
| 595 | property->ID = id; |
| 596 | fxSetHostFunctionProperty(the, property, call, length, id); |
| 597 | return property; |
| 598 | } |
| 599 | |
| 600 | void fxPetrifyInstance(txMachine* the, txSlot* instance) |
| 601 | { |
no test coverage detected