| 9937 | #define IF(c,s) if (c) error(S,s) |
| 9938 | |
| 9939 | static void error(LoadState* S, const char* why) |
| 9940 | { |
| 9941 | luaO_pushfstring(S->L,"%s: %s in precompiled chunk",S->name,why); |
| 9942 | luaD_throw(S->L,LUA_ERRSYNTAX); |
| 9943 | } |
| 9944 | #endif |
| 9945 | |
| 9946 | #define LoadMem(S,b,n,size) LoadBlock(S,b,(n)*(size)) |
no test coverage detected