| 433 | } |
| 434 | |
| 435 | static int TestString(lua_State* L) |
| 436 | { |
| 437 | Test* test = static_cast<Test*>(lua_touserdata(L, 1)); |
| 438 | lua_newtable(L); |
| 439 | lua_pushstring(L, "test"); |
| 440 | lua_setfield(L, -2, "uint64_value"); |
| 441 | CheckDDF(L, test); |
| 442 | return 0; |
| 443 | } |
| 444 | static int TestNumber(lua_State* L) |
| 445 | { |
| 446 | Test* test = static_cast<Test*>(lua_touserdata(L, 1)); |
nothing calls this directly
no test coverage detected