| 136 | |
| 137 | |
| 138 | static int dostring (lua_State *L, const char *s, const char *name) { |
| 139 | int status = luaL_loadbuffer(L, s, strlen(s), name) || docall(L, 0, 1); |
| 140 | return report(L, status); |
| 141 | } |
| 142 | |
| 143 | |
| 144 | static int dolibrary (lua_State *L, const char *name) { |
no test coverage detected