| 43 | int stack_index; |
| 44 | |
| 45 | protected_handler(std::false_type, lua_State* L_, const Target& target_) : m_L(L_), target(target_), stack_index(0) { |
| 46 | if (ShouldPush) { |
| 47 | stack_index = lua_gettop(L_) + 1; |
| 48 | target.push(L_); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | protected_handler(std::true_type, lua_State* L_, const Target& target_) : m_L(L_), target(target_), stack_index(0) { |
| 53 | if (ShouldPush) { |
nothing calls this directly
no test coverage detected