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

Function LoadCode

third-party/lua-5.3.5/src/lundump.c:107–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105
106
107static void LoadCode (LoadState *S, Proto *f) {
108 int n = LoadInt(S);
109 f->code = luaM_newvector(S->L, n, Instruction);
110 f->sizecode = n;
111 LoadVector(S, f->code, n);
112}
113
114
115static void LoadFunction(LoadState *S, Proto *f, TString *psource);

Callers 1

LoadFunctionFunction · 0.70

Calls 1

LoadIntFunction · 0.70

Tested by

no test coverage detected