MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / PrintGlobalVars

Method PrintGlobalVars

Source/Scripting/angelscript/asmodule.cpp:1254–1263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1252}
1253
1254void ASModule::PrintGlobalVars() {
1255 std::list<VarStorage> storage;
1256 std::list<ScriptObjectInstance> handle_var_storage;
1257 GetGlobalVars(storage, handle_var_storage);
1258 std::list<VarStorage>::iterator iter = storage.begin();
1259 for (; iter != storage.end(); ++iter) {
1260 VarStorage& vs = (*iter);
1261 printf("%s\n", vs.GetString().c_str());
1262 }
1263}
1264
1265void ASModule::PrintAllTypes() {
1266 /*

Callers

nothing calls this directly

Calls 4

beginMethod · 0.45
endMethod · 0.45
c_strMethod · 0.45
GetStringMethod · 0.45

Tested by

no test coverage detected