| 229 | } |
| 230 | |
| 231 | static int TestGetUserData(lua_State* L) { |
| 232 | TestDummy* dummy = (TestDummy*)lua_touserdata(L, 1); |
| 233 | lua_pushlightuserdata(L, (void*)(uintptr_t)dummy->m_Dummy); |
| 234 | return 1; |
| 235 | } |
| 236 | |
| 237 | static int TestResolvePath(lua_State* L) { |
| 238 | dmScript::PushHash(L, dmHashString64(luaL_checkstring(L, 2))); |
nothing calls this directly
no test coverage detected