| 213 | } |
| 214 | |
| 215 | txSlot* fxQueueIDKeys(txMachine* the, txSlot* first, txFlag flag, txSlot* keys) |
| 216 | { |
| 217 | if (flag & XS_EACH_NAME_FLAG) { |
| 218 | txSlot* property = first; |
| 219 | while (property) { |
| 220 | if (!(property->flag & XS_INTERNAL_FLAG) && fxIsKeyName(the, property->ID)) |
| 221 | keys = fxQueueKey(the, property->ID, 0, keys); |
| 222 | property = property->next; |
| 223 | } |
| 224 | } |
| 225 | if (flag & XS_EACH_SYMBOL_FLAG) { |
| 226 | txSlot* property = first; |
| 227 | while (property) { |
| 228 | if (!(property->flag & XS_INTERNAL_FLAG) && fxIsKeySymbol(the, property->ID)) |
| 229 | keys = fxQueueKey(the, property->ID, 0, keys); |
| 230 | property = property->next; |
| 231 | } |
| 232 | } |
| 233 | return keys; |
| 234 | } |
| 235 | |
| 236 | // INDEX |
| 237 |
no test coverage detected