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

Function fxPrintStack

xs/tools/xslSlot.c:1333–1342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1331}
1332
1333void fxPrintStack(txMachine* the, FILE* file)
1334{
1335 txSlot *slot = the->stack;
1336 txSlot *limit = the->stackTop - 1;
1337 while (slot < limit) {
1338 fxPrintSlot(the, file, slot, XS_NO_FLAG);
1339 slot++;
1340 }
1341 fxPrintSlot(the, file, slot, XS_NO_FLAG);
1342}
1343
1344
1345void fxPrintTable(txMachine* the, FILE* file, txSize modulo, txSlot** table)

Callers 1

mainFunction · 0.85

Calls 1

fxPrintSlotFunction · 0.85

Tested by

no test coverage detected