MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / loadCode

Function loadCode

3rd/lua-5.4.3/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.85

Calls 1

loadIntFunction · 0.85

Tested by

no test coverage detected