| 284 | } |
| 285 | |
| 286 | void lua_call(lua_State* L, int nargs, int nresults) |
| 287 | { |
| 288 | if (luaVersion > LuaVersion::LUA_51) |
| 289 | { |
| 290 | return e_lua_callk(L, nargs, nresults, 0, nullptr); |
| 291 | } |
| 292 | return (void)e_lua_call(L, nargs, nresults); |
| 293 | } |
| 294 | |
| 295 | int lua_pcall(lua_State* L, int nargs, int nresults, int errfunc) |
| 296 | { |
no outgoing calls
no test coverage detected