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

Function dumpCode

third-party/lua-5.5.0/src/ldump.c:171–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169
170
171static void dumpCode (DumpState *D, const Proto *f) {
172 dumpInt(D, f->sizecode);
173 dumpAlign(D, sizeof(f->code[0]));
174 lua_assert(f->code != NULL);
175 dumpVector(D, f->code, cast_uint(f->sizecode));
176}
177
178
179static void dumpFunction (DumpState *D, const Proto *f);

Callers 1

dumpFunctionFunction · 0.70

Calls 2

dumpAlignFunction · 0.85
dumpIntFunction · 0.70

Tested by

no test coverage detected