| 34 | #define IF(c,s) if (c) error(S,s) |
| 35 | |
| 36 | static void error(LoadState* S, const char* why) |
| 37 | { |
| 38 | luaO_pushfstring(S->L,"%s: %s in precompiled chunk",S->name,why); |
| 39 | luaD_throw(S->L,LUA_ERRSYNTAX); |
| 40 | } |
| 41 | #endif |
| 42 | |
| 43 | #define LoadMem(S,b,n,size) LoadBlock(S,b,(n)*(size)) |
no test coverage detected