| 282 | |
| 283 | |
| 284 | static int db_upvalueid (lua_State *L) { |
| 285 | int n = checkupval(L, 1, 2); |
| 286 | lua_pushlightuserdata(L, lua_upvalueid(L, 1, n)); |
| 287 | return 1; |
| 288 | } |
| 289 | |
| 290 | |
| 291 | static int db_upvaluejoin (lua_State *L) { |
nothing calls this directly
no test coverage detected