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

Function fxPrintTable

xs/tools/xslSlot.c:1345–1357  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1343
1344
1345void fxPrintTable(txMachine* the, FILE* file, txSize modulo, txSlot** table)
1346{
1347 while (modulo > 1) {
1348 fprintf(file, "\t");
1349 fxPrintAddress(the, file, *table);
1350 fprintf(file, ",\n");
1351 modulo--;
1352 table++;
1353 }
1354 fprintf(file, "\t");
1355 fxPrintAddress(the, file, *table);
1356 fprintf(file, "\n");
1357}
1358
1359void fxSetHostFunctionProperty(txMachine* the, txSlot* property, txCallback call, txInteger length, txID id)
1360{

Callers 1

mainFunction · 0.85

Calls 1

fxPrintAddressFunction · 0.85

Tested by

no test coverage detected