| 775 | |
| 776 | |
| 777 | static void checkmode (lua_State *L, const char *mode, const char *x) { |
| 778 | if (mode && strchr(mode, x[0]) == NULL) { |
| 779 | luaO_pushfstring(L, |
| 780 | "attempt to load a %s chunk (mode is '%s')", x, mode); |
| 781 | luaD_throw(L, LUA_ERRSYNTAX); |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | |
| 786 | static void f_parser (lua_State *L, void *ud) { |
no test coverage detected