MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / dumpFunctions

Method dumpFunctions

Engine/source/console/consoleDoc.cpp:526–540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

524}
525
526void Namespace::dumpFunctions( bool dumpScript, bool dumpEngine )
527{
528 // Get the global namespace.
529 Namespace* g = find(NULL); //->mParent;
530
531 printClassHeader(NULL, NULL,NULL, false);
532
533 while(g)
534 {
535 printNamespaceEntries(g, dumpScript, dumpEngine );
536 g = g->mParent;
537 }
538
539 printClassFooter();
540}

Callers

nothing calls this directly

Calls 3

findFunction · 0.85
printClassHeaderFunction · 0.85
printClassFooterFunction · 0.85

Tested by

no test coverage detected