| 9991 | } |
| 9992 | |
| 9993 | static void LoadCode(LoadState* S, Proto* f) |
| 9994 | { |
| 9995 | int n=LoadInt(S); |
| 9996 | f->code=luaM_newvector(S->L,n,Instruction); |
| 9997 | f->sizecode=n; |
| 9998 | LoadVector(S,f->code,n,sizeof(Instruction)); |
| 9999 | } |
| 10000 | |
| 10001 | static Proto* LoadFunction(LoadState* S, TString* p); |
| 10002 |
no test coverage detected