| 113 | } |
| 114 | |
| 115 | stateless_stack_reference copy(lua_State* L_) const noexcept { |
| 116 | return stateless_stack_reference(L_, raw_index(m_index)); |
| 117 | } |
| 118 | |
| 119 | void copy_assign(lua_State*, const stateless_stack_reference& right) noexcept { |
| 120 | m_index = right.m_index; |
nothing calls this directly
no test coverage detected