| 111 | |
| 112 | |
| 113 | static void LoadCode (LoadState *S, Proto *f) { |
| 114 | int n = LoadInt(S); |
| 115 | f->code = luaM_newvector(S->L, n, Instruction); |
| 116 | f->sizecode = n; |
| 117 | LoadVector(S, f->code, n); |
| 118 | } |
| 119 | |
| 120 | |
| 121 | static void LoadFunction(LoadState *S, Proto *f, TString *psource); |
no test coverage detected