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