Higher level wrapper for ldbCatStackValueRec() that just uses an initial * recursion level of '0'. */
| 2315 | /* Higher level wrapper for ldbCatStackValueRec() that just uses an initial |
| 2316 | * recursion level of '0'. */ |
| 2317 | sds ldbCatStackValue(sds s, lua_State *lua, int idx) { |
| 2318 | return ldbCatStackValueRec(s,lua,idx,0); |
| 2319 | } |
| 2320 | |
| 2321 | /* Produce a debugger log entry representing the value of the Lua object |
| 2322 | * currently on the top of the stack. The element is ot popped nor modified. |
no test coverage detected