| 23 | } |
| 24 | |
| 25 | LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *name) { |
| 26 | UNUSED(z); |
| 27 | UNUSED(buff); |
| 28 | UNUSED(name); |
| 29 | lua_pushliteral(L,"parser not loaded"); |
| 30 | lua_error(L); |
| 31 | return NULL; |
| 32 | } |
| 33 | |
| 34 | #ifdef NODUMP |
| 35 | #include "lundump.h" |
nothing calls this directly
no test coverage detected