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