| 370 | return 1; |
| 371 | } |
| 372 | static int BoundCheck(lua_State* L)LNOEXCEPT |
| 373 | { |
| 374 | Wrapper* p = static_cast<Wrapper*>(luaL_checkudata(L, 1, TYPENAME_BENTLASER)); |
| 375 | if (!p->handle) |
| 376 | return luaL_error(L, "lstgBentLaserData was released."); |
| 377 | bool r = p->handle->BoundCheck(); |
| 378 | lua_pushboolean(L, r); |
| 379 | return 1; |
| 380 | } |
| 381 | static int Meta_ToString(lua_State* L)LNOEXCEPT |
| 382 | { |
| 383 | Wrapper* p = static_cast<Wrapper*>(luaL_checkudata(L, 1, TYPENAME_BENTLASER)); |
nothing calls this directly
no test coverage detected