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

Function dumpVariables

Engine/source/console/engineDoc.cpp:205–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

203}
204
205static void dumpVariables( Stream& stream, const char* inClass = NULL )
206{
207 const U32 hashTableSize = gEvalState.globalVars.hashTable->size;
208 for( U32 i = 0; i < hashTableSize; ++ i )
209 for( Dictionary::Entry* entry = gEvalState.globalVars.hashTable->data[ i ]; entry != NULL; entry = entry->nextEntry )
210 dumpVariable( stream, entry, inClass );
211}
212
213static void dumpFunction( Stream &stream,
214 bool isClassMethod,

Callers 2

dumpClassesFunction · 0.85
dumpEngineDocsFunction · 0.85

Calls 1

dumpVariableFunction · 0.85

Tested by

no test coverage detected