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

Function DumpUpvalues

third-party/lua-5.3.5/src/ldump.c:137–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135
136
137static void DumpUpvalues (const Proto *f, DumpState *D) {
138 int i, n = f->sizeupvalues;
139 DumpInt(n, D);
140 for (i = 0; i < n; i++) {
141 DumpByte(f->upvalues[i].instack, D);
142 DumpByte(f->upvalues[i].idx, D);
143 }
144}
145
146
147static void DumpDebug (const Proto *f, DumpState *D) {

Callers 1

DumpFunctionFunction · 0.70

Calls 2

DumpByteFunction · 0.85
DumpIntFunction · 0.70

Tested by

no test coverage detected