| 1891 | }; |
| 1892 | |
| 1893 | static void init_intervalds(Lua L) |
| 1894 | { |
| 1895 | luaL_newmetatable(L, dbtypes.intervalds); |
| 1896 | lua_pushstring(L, "__index"); |
| 1897 | lua_pushvalue(L, -2); |
| 1898 | lua_settable(L, -3); |
| 1899 | luaL_openlib(L, NULL, intervalds_funcs, 0); |
| 1900 | init_arithmetic(L, 0); |
| 1901 | init_cmp(L); |
| 1902 | init_common(L); |
| 1903 | lua_pop(L, 1); |
| 1904 | } |
| 1905 | |
| 1906 | static int clone_blob(Lua lua) |
| 1907 | { |
no test coverage detected