MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / DumpFunction

Function DumpFunction

Source/Misc/lua/src/lua.c:5793–5805  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5791}
5792
5793static void DumpFunction(const Proto* f, const TString* p, DumpState* D)
5794{
5795DumpString((f->source==p || D->strip) ? NULL : f->source,D);
5796DumpInt(f->linedefined,D);
5797DumpInt(f->lastlinedefined,D);
5798DumpChar(f->nups,D);
5799DumpChar(f->numparams,D);
5800DumpChar(f->is_vararg,D);
5801DumpChar(f->maxstacksize,D);
5802DumpCode(f,D);
5803DumpConstants(f,D);
5804DumpDebug(f,D);
5805}
5806
5807static void DumpHeader(DumpState* D)
5808{

Callers 2

DumpConstantsFunction · 0.85
luaU_dumpFunction · 0.85

Calls 5

DumpStringFunction · 0.85
DumpIntFunction · 0.85
DumpCharFunction · 0.85
DumpConstantsFunction · 0.85
DumpDebugFunction · 0.85

Tested by

no test coverage detected