MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / loadCode

Function loadCode

extlibs/lua/src/lundump.c:138–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136
137
138static void loadCode (LoadState *S, Proto *f) {
139 int n = loadInt(S);
140 f->code = luaM_newvectorchecked(S->L, n, Instruction);
141 f->sizecode = n;
142 loadVector(S, f->code, n);
143}
144
145
146static void loadFunction(LoadState *S, Proto *f, TString *psource);

Callers 1

loadFunctionFunction · 0.85

Calls 1

loadIntFunction · 0.85

Tested by

no test coverage detected