| 88 | } |
| 89 | |
| 90 | static void LoadCode(LoadState* S, Proto* f) |
| 91 | { |
| 92 | int n=LoadInt(S); |
| 93 | f->code=luaM_newvector(S->L,n,Instruction); |
| 94 | f->sizecode=n; |
| 95 | LoadVector(S,f->code,n,sizeof(Instruction)); |
| 96 | } |
| 97 | |
| 98 | static Proto* LoadFunction(LoadState* S, TString* p); |
| 99 |
no test coverage detected