MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxWriteSlots

Function fxWriteSlots

xs/sources/xsSnapshot.c:2286–2298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2284}
2285
2286void fxWriteSlots(txMachine* the, txSnapshot* snapshot)
2287{
2288 size_t slotSize = snapshot->slotSize;
2289 txSlot** slots = snapshot->slots;
2290 slotSize--;
2291 slots++;
2292 while (slotSize) {
2293 txSlot* slot = *slots;
2294 fxWriteSlot(the, snapshot, slot, 1);
2295 slotSize--;
2296 slots++;
2297 }
2298}
2299
2300void fxWriteStack(txMachine* the, txSnapshot* snapshot)
2301{

Callers 1

fxWriteSnapshotFunction · 0.85

Calls 1

fxWriteSlotFunction · 0.85

Tested by

no test coverage detected