| 28 | } LoadState; |
| 29 | |
| 30 | static l_noret error(LoadState* S, const char* why) |
| 31 | { |
| 32 | luaO_pushfstring(S->L,"%s: %s precompiled chunk",S->name,why); |
| 33 | luaD_throw(S->L,LUA_ERRSYNTAX); |
| 34 | } |
| 35 | |
| 36 | #define LoadMem(S,b,n,size) LoadBlock(S,b,(n)*(size)) |
| 37 | #define LoadByte(S) (lu_byte)LoadChar(S) |
no test coverage detected