MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / interror

Function interror

third-party/lua-5.5.0/src/lauxlib.c:440–445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

438
439
440static void interror (lua_State *L, int arg) {
441 if (lua_isnumber(L, arg))
442 luaL_argerror(L, arg, "number has no integer representation");
443 else
444 tag_error(L, arg, LUA_TNUMBER);
445}
446
447
448LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int arg) {

Callers 1

luaL_checkintegerFunction · 0.70

Calls 3

lua_isnumberFunction · 0.70
luaL_argerrorFunction · 0.70
tag_errorFunction · 0.70

Tested by

no test coverage detected