| 2392 | }; |
| 2393 | |
| 2394 | static void init_real(Lua L) |
| 2395 | { |
| 2396 | luaL_newmetatable(L, dbtypes.real); |
| 2397 | lua_pushstring(L, "__index"); |
| 2398 | lua_pushvalue(L, -2); |
| 2399 | lua_settable(L, -3); |
| 2400 | |
| 2401 | luaL_openlib(L, NULL, real_funcs, 0); |
| 2402 | init_arithmetic(L, LUA_OP_MOD); |
| 2403 | init_cmp(L); |
| 2404 | init_common(L); |
| 2405 | |
| 2406 | lua_pop(L, 1); |
| 2407 | } |
| 2408 | |
| 2409 | static int l_decimal_tostring(Lua lua) |
| 2410 | { |
no test coverage detected