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

Function loadCode

third-party/lua-5.4.6/src/lundump.c:144–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142
143
144static void loadCode (LoadState *S, Proto *f) {
145 int n = loadInt(S);
146 f->code = luaM_newvectorchecked(S->L, n, Instruction);
147 f->sizecode = n;
148 loadVector(S, f->code, n);
149}
150
151
152static void loadFunction(LoadState *S, Proto *f, TString *psource);

Callers 1

loadFunctionFunction · 0.70

Calls 1

loadIntFunction · 0.70

Tested by

no test coverage detected