| 142 | |
| 143 | |
| 144 | static 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 | |
| 152 | static void loadFunction(LoadState *S, Proto *f, TString *psource); |
no test coverage detected