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

Function LoadCode

third-party/lua-5.2.4/src/lundump.c:86–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86static void LoadCode(LoadState* S, Proto* f)
87{
88 int n=LoadInt(S);
89 f->code=luaM_newvector(S->L,n,Instruction);
90 f->sizecode=n;
91 LoadVector(S,f->code,n,sizeof(Instruction));
92}
93
94static void LoadFunction(LoadState* S, Proto* f);
95

Callers 1

LoadFunctionFunction · 0.70

Calls 1

LoadIntFunction · 0.70

Tested by

no test coverage detected