MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / LoadCode

Function LoadCode

ThirdParty/lua/lua/lundump.c:103–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

LoadFunctionFunction · 0.85

Calls 1

LoadIntFunction · 0.85

Tested by

no test coverage detected