| 981 | |
| 982 | |
| 983 | static void checkmode (lua_State *L, const char *mode, const char *x) { |
| 984 | if (mode && strchr(mode, x[0]) == NULL) { |
| 985 | luaO_pushfstring(L, |
| 986 | "attempt to load a %s chunk (mode is '%s')", x, mode); |
| 987 | luaD_throw(L, LUA_ERRSYNTAX); |
| 988 | } |
| 989 | } |
| 990 | |
| 991 | |
| 992 | static void f_parser (lua_State *L, void *ud) { |
no test coverage detected