| 629 | |
| 630 | |
| 631 | static void checkmode (lua_State *L, const char *mode, const char *x) { |
| 632 | if (mode && strchr(mode, x[0]) == NULL) { |
| 633 | luaO_pushfstring(L, |
| 634 | "attempt to load a %s chunk (mode is " LUA_QS ")", x, mode); |
| 635 | luaD_throw(L, LUA_ERRSYNTAX); |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | |
| 640 | static void f_parser (lua_State *L, void *ud) { |
no test coverage detected