| 627 | /* -- Stack setters (object creation) ------------------------------------- */ |
| 628 | |
| 629 | LUA_API void lua_pushnil(lua_State *L) |
| 630 | { |
| 631 | setnilV(L->top); |
| 632 | incr_top(L); |
| 633 | } |
| 634 | |
| 635 | LUA_API void lua_pushnumber(lua_State *L, lua_Number n) |
| 636 | { |
no outgoing calls
no test coverage detected