| 404 | |
| 405 | |
| 406 | static void interror (lua_State *L, int arg) { |
| 407 | if (lua_isnumber(L, arg)) |
| 408 | luaL_argerror(L, arg, "number has no integer representation"); |
| 409 | else |
| 410 | tag_error(L, arg, LUA_TNUMBER); |
| 411 | } |
| 412 | |
| 413 | |
| 414 | LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int arg) { |
no test coverage detected