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

Function lua_pushinteger

third-party/lua-5.2.4/src/lapi.c:483–488  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

481
482
483LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
484 lua_lock(L);
485 setnvalue(L->top, cast_num(n));
486 api_incr_top(L);
487 lua_unlock(L);
488}
489
490
491LUA_API void lua_pushunsigned (lua_State *L, lua_Unsigned u) {

Callers 15

mainFunction · 0.70
luaB_rawlenFunction · 0.70
luaB_collectgarbageFunction · 0.70
pairsmetaFunction · 0.70
ipairsauxFunction · 0.70
luaB_selectFunction · 0.70
math_frexpFunction · 0.70
str_lenFunction · 0.70
str_byteFunction · 0.70
push_onecaptureFunction · 0.70
str_find_auxFunction · 0.70
gmatch_auxFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected