| 451 | |
| 452 | |
| 453 | LUA_API void lua_pushnil(lua_State *L) { |
| 454 | lua_lock(L); |
| 455 | setnilvalue(L->top); |
| 456 | api_incr_top(L); |
| 457 | lua_unlock(L); |
| 458 | } |
| 459 | |
| 460 | |
| 461 | LUA_API void lua_pushnumber(lua_State *L, lua_Number n) { |
no outgoing calls
no test coverage detected