| 101 | |
| 102 | |
| 103 | static 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 | |
| 111 | static void LoadFunction(LoadState *S, Proto *f, TString *psource); |
no test coverage detected