| 1092 | } |
| 1093 | |
| 1094 | void fxArrayOwnKeys(txMachine* the, txSlot* instance, txFlag flag, txSlot* keys) |
| 1095 | { |
| 1096 | txSlot* property = instance->next; |
| 1097 | keys = fxQueueIndexKeys(the, property, flag, keys); |
| 1098 | if (flag & XS_EACH_NAME_FLAG) |
| 1099 | keys = fxQueueKey(the, mxID(_length), 0, keys); |
| 1100 | property = property->next; |
| 1101 | fxQueueIDKeys(the, property, flag, keys); |
| 1102 | } |
| 1103 | |
| 1104 | txSlot* fxArraySetProperty(txMachine* the, txSlot* instance, txID id, txIndex index, txFlag flag) |
| 1105 | { |
nothing calls this directly
no test coverage detected