| 2276 | |
| 2277 | |
| 2278 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 2279 | lua_lock(L); |
| 2280 | setnvalue(L->top, n); |
| 2281 | api_incr_top(L); |
| 2282 | lua_unlock(L); |
| 2283 | } |
| 2284 | |
| 2285 | |
| 2286 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected