| 530 | } |
| 531 | |
| 532 | LUA_API int lua_getinfo(lua_State *L, const char *what, lua_Debug *ar) |
| 533 | { |
| 534 | return lj_debug_getinfo(L, what, (lj_Debug *)ar, 0); |
| 535 | } |
| 536 | |
| 537 | LUA_API int lua_getstack(lua_State *L, int level, lua_Debug *ar) |
| 538 | { |
no test coverage detected