| 704 | |
| 705 | |
| 706 | static void checkmode (lua_State *L, const char *mode, const char *x) { |
| 707 | if (mode && strchr(mode, x[0]) == NULL) { |
| 708 | luaO_pushfstring(L, |
| 709 | "attempt to load a %s chunk (mode is " LUA_QS ")", x, mode); |
| 710 | luaD_throw(L, LUA_ERRSYNTAX); |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | |
| 715 | static void f_parser (lua_State *L, void *ud) { |
no test coverage detected