| 420 | |
| 421 | |
| 422 | static void interror (lua_State *L, int arg) { |
| 423 | if (lua_isnumber(L, arg)) |
| 424 | luaL_argerror(L, arg, "number has no integer representation"); |
| 425 | else |
| 426 | tag_error(L, arg, LUA_TNUMBER); |
| 427 | } |
| 428 | |
| 429 | |
| 430 | LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int arg) { |
no test coverage detected