| 132 | |
| 133 | |
| 134 | static int dofile (lua_State *L, const char *name) { |
| 135 | int status = luaL_loadfile(L, name) || docall(L, 0, 1); |
| 136 | return report(L, status); |
| 137 | } |
| 138 | |
| 139 | |
| 140 | static int dostring (lua_State *L, const char *s, const char *name) { |
no test coverage detected