| 1429 | } |
| 1430 | |
| 1431 | void fxReadKeyhole(txMachine* the, txSnapshot* snapshot) |
| 1432 | { |
| 1433 | txSlot** p; |
| 1434 | txSlot** q; |
| 1435 | txSlot* slot; |
| 1436 | the->keyholeCount = 0; |
| 1437 | the->keyholeList = C_NULL; |
| 1438 | p = the->keyArray; |
| 1439 | q = p + the->keyIndex - the->keyOffset; |
| 1440 | p++; // skip @ |
| 1441 | while (p < q) { |
| 1442 | slot = *p; |
| 1443 | if (slot->kind == XS_UNDEFINED_KIND) { |
| 1444 | the->keyholeCount++; |
| 1445 | the->keyholeList = slot; |
| 1446 | } |
| 1447 | p++; |
| 1448 | } |
| 1449 | } |
| 1450 | |
| 1451 | void fxReadMapSet(txMachine* the, txSlot* table, txBoolean paired) |
| 1452 | { |
no outgoing calls
no test coverage detected