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