| 257 | } |
| 258 | |
| 259 | lua_Number lua_tonumber(lua_State* L, int idx) |
| 260 | { |
| 261 | if (luaVersion > LuaVersion::LUA_51) |
| 262 | { |
| 263 | return e_lua_tonumberx(L, idx, nullptr); |
| 264 | } |
| 265 | return e_lua_tonumber(L, idx); |
| 266 | } |
| 267 | |
| 268 | int lua_getglobal(lua_State* L, const char* name) |
| 269 | { |
no outgoing calls
no test coverage detected