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

Method dumpFunctions

Engine/source/console/consoleDoc.cpp:544–558  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

542}
543
544void Namespace::dumpFunctions( bool dumpScript, bool dumpEngine )
545{
546 // Get the global namespace.
547 Namespace* g = find(NULL); //->mParent;
548
549 printClassHeader(NULL, NULL,NULL, false);
550
551 while(g)
552 {
553 printNamespaceEntries(g, dumpScript, dumpEngine );
554 g = g->mParent;
555 }
556
557 printClassFooter();
558}

Callers

nothing calls this directly

Calls 3

printClassHeaderFunction · 0.85
printClassFooterFunction · 0.85
findFunction · 0.50

Tested by

no test coverage detected