| 75 | } |
| 76 | |
| 77 | txSlot* fxNextHostFunctionProperty(txMachine* the, txSlot* property, txCallback call, txInteger length, txID id, txFlag flag) |
| 78 | { |
| 79 | txSlot *function, *home = the->stack, *slot; |
| 80 | function = fxNewHostFunction(the, call, length, id, XS_NO_ID); |
| 81 | slot = mxFunctionInstanceHome(function); |
| 82 | slot->value.home.object = home->value.reference; |
| 83 | property = property->next = fxNewSlot(the); |
| 84 | property->flag = flag; |
| 85 | property->ID = id; |
| 86 | property->kind = the->stack->kind; |
| 87 | property->value = the->stack->value; |
| 88 | mxPop(); |
| 89 | return property; |
| 90 | } |
| 91 | #endif |
| 92 | |
| 93 | txSlot* fxNextUndefinedProperty(txMachine* the, txSlot* property, txID id, txFlag flag) |
no test coverage detected