Higher level wrapper for ldbCatStackValueRec() that just uses an initial * recursion level of '0'. */
| 2292 | /* Higher level wrapper for ldbCatStackValueRec() that just uses an initial |
| 2293 | * recursion level of '0'. */ |
| 2294 | sds ldbCatStackValue(sds s, lua_State *lua, int idx) { |
| 2295 | return ldbCatStackValueRec(s,lua,idx,0); |
| 2296 | } |
| 2297 | |
| 2298 | /* Produce a debugger log entry representing the value of the Lua object |
| 2299 | * currently on the top of the stack. The element is ot popped nor modified. |
no test coverage detected