| 104 | |
| 105 | |
| 106 | static void LoadCode (LoadState *S, Proto *f) { |
| 107 | int n = LoadInt(S); |
| 108 | f->code = luaM_newvector(S->L, n, Instruction); |
| 109 | f->sizecode = n; |
| 110 | LoadVector(S, f->code, n); |
| 111 | } |
| 112 | |
| 113 | |
| 114 | static void LoadFunction(LoadState *S, Proto *f, TString *psource); |
no test coverage detected