| 411 | //============================================================================// |
| 412 | |
| 413 | int LuaHandle::ScriptPrintPointer(lua_State* L) { |
| 414 | const std::string prefix = luaL_optstring(L, 2, "PrintPointer: "); |
| 415 | LuaLog(0, "%s%p\n", prefix.c_str(), lua_topointer(L, 1)); |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | |
| 420 | int LuaHandle::ScriptPrintGCInfo(lua_State* L) { |
nothing calls this directly
no test coverage detected