| 208 | |
| 209 | |
| 210 | static int dofile (lua_State *L, const char *name) { |
| 211 | int status = luaL_loadfile(L, name); |
| 212 | if (status == LUA_OK) status = docall(L, 0, 0); |
| 213 | return report(L, status); |
| 214 | } |
| 215 | |
| 216 | |
| 217 | static int dostring (lua_State *L, const char *s, const char *name) { |
no test coverage detected