MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / DumpUpvalues

Function DumpUpvalues

third-party/lua-5.2.4/src/ldump.c:109–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109static void DumpUpvalues(const Proto* f, DumpState* D)
110{
111 int i,n=f->sizeupvalues;
112 DumpInt(n,D);
113 for (i=0; i<n; i++)
114 {
115 DumpChar(f->upvalues[i].instack,D);
116 DumpChar(f->upvalues[i].idx,D);
117 }
118}
119
120static void DumpDebug(const Proto* f, DumpState* D)
121{

Callers 1

DumpFunctionFunction · 0.70

Calls 2

DumpIntFunction · 0.70
DumpCharFunction · 0.70

Tested by

no test coverage detected