| 1112 | |
| 1113 | |
| 1114 | static void checkmode (lua_State *L, const char *mode, const char *x) { |
| 1115 | if (strchr(mode, x[0]) == NULL) { |
| 1116 | luaO_pushfstring(L, |
| 1117 | "attempt to load a %s chunk (mode is '%s')", x, mode); |
| 1118 | luaD_throw(L, LUA_ERRSYNTAX); |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | |
| 1123 | static void f_parser (lua_State *L, void *ud) { |
no test coverage detected