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

Function fxListFrames

xs/sources/xsDebug.c:2345–2362  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2343}
2344
2345void fxListFrames(txMachine* the)
2346{
2347 txSlot* aFrame;
2348
2349 fxEcho(the, "<frames>");
2350 aFrame = the->frame;
2351 while (aFrame) {
2352 fxEcho(the, "<frame");
2353 fxEcho(the, " name=\"");
2354 fxEchoFrameName(the, aFrame);
2355 fxEcho(the, "\"");
2356 fxEchoAddress(the, aFrame);
2357 fxEchoFramePathLine(the, aFrame);
2358 fxEcho(the, "/>");
2359 aFrame = aFrame->next;
2360 }
2361 fxEcho(the, "</frames>");
2362}
2363
2364void fxListGlobal(txMachine* the)
2365{

Callers 1

fxDebugLoopFunction · 0.85

Calls 4

fxEchoFunction · 0.85
fxEchoFrameNameFunction · 0.85
fxEchoAddressFunction · 0.85
fxEchoFramePathLineFunction · 0.85

Tested by

no test coverage detected