| 296 | |
| 297 | |
| 298 | static int db_upvalueid (lua_State *L) { |
| 299 | void *id = checkupval(L, 1, 2, NULL); |
| 300 | if (id != NULL) |
| 301 | lua_pushlightuserdata(L, id); |
| 302 | else |
| 303 | luaL_pushfail(L); |
| 304 | return 1; |
| 305 | } |
| 306 | |
| 307 | |
| 308 | static int db_upvaluejoin (lua_State *L) { |
nothing calls this directly
no test coverage detected