| 240 | } |
| 241 | |
| 242 | static int TestIsValid(lua_State* L) |
| 243 | { |
| 244 | TestDummy* dummy = (TestDummy*)lua_touserdata(L, 1); |
| 245 | lua_pushboolean(L, dummy != 0x0 && dummy->m_Dummy != 0); |
| 246 | return 1; |
| 247 | } |
| 248 | |
| 249 | static int TestGetContextTableRef(lua_State* L) |
| 250 | { |
nothing calls this directly
no test coverage detected