| 261 | } |
| 262 | |
| 263 | static int TestScriptGetUniqueScriptId(lua_State* L) |
| 264 | { |
| 265 | TestDummy* inst = (TestDummy*)lua_touserdata(L, 1); |
| 266 | lua_pushinteger(L, (lua_Integer)inst->m_UniqueScriptId); |
| 267 | return 1; |
| 268 | } |
| 269 | |
| 270 | static int TestToString(lua_State* L) |
| 271 | { |
nothing calls this directly
no test coverage detected