| 2337 | }; |
| 2338 | |
| 2339 | static void init_int(Lua L) |
| 2340 | { |
| 2341 | luaL_newmetatable(L, dbtypes.integer); |
| 2342 | lua_pushstring(L, "__index"); |
| 2343 | lua_pushvalue(L, -2); |
| 2344 | lua_settable(L, -3); |
| 2345 | |
| 2346 | luaL_openlib(L, NULL, int_funcs, 0); |
| 2347 | init_arithmetic(L, LUA_OP_MOD); |
| 2348 | init_cmp(L); |
| 2349 | init_common(L); |
| 2350 | |
| 2351 | lua_pop(L, 1); |
| 2352 | } |
| 2353 | |
| 2354 | static int l_real_new(Lua lua) |
| 2355 | { |
no test coverage detected