| 282 | } |
| 283 | |
| 284 | std::string ToPointer(lua_State *L, int index) { |
| 285 | const void *pointer = lua_topointer(L, index); |
| 286 | std::stringstream ss; |
| 287 | ss << lua_typename(L, lua_type(L, index)) << "(0x" << std::hex << pointer << ")"; |
| 288 | return ss.str(); |
| 289 | } |
| 290 | |
| 291 | #ifndef EMMY_USE_LUA_SOURCE |
| 292 | void DisplayFunction54(Idx<Variable> variable, lua_State *L, int index, lua_Debug_54 &ar) { |
no test coverage detected