| 136 | |
| 137 | |
| 138 | static 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 | |
| 146 | static void loadFunction(LoadState *S, Proto *f, TString *psource); |
no test coverage detected