| 215 | |
| 216 | |
| 217 | static int dostring (lua_State *L, const char *s, const char *name) { |
| 218 | int status = luaL_loadbuffer(L, s, strlen(s), name); |
| 219 | if (status == LUA_OK) status = docall(L, 0, 0); |
| 220 | return report(L, status); |
| 221 | } |
| 222 | |
| 223 | |
| 224 | static int dolibrary (lua_State *L, const char *name) { |
no test coverage detected