| 291 | |
| 292 | |
| 293 | static int db_upvalueid (lua_State *L) { |
| 294 | int n = checkupval(L, 1, 2); |
| 295 | lua_pushlightuserdata(L, lua_upvalueid(L, 1, n)); |
| 296 | return 1; |
| 297 | } |
| 298 | |
| 299 | |
| 300 | static int db_upvaluejoin (lua_State *L) { |
nothing calls this directly
no test coverage detected