| 17290 | } |
| 17291 | |
| 17292 | int operator()(lua_State* L) { |
| 17293 | auto f = [&](lua_State*) -> int { return this->call(L); }; |
| 17294 | return detail::trampoline(L, f); |
| 17295 | } |
| 17296 | }; |
| 17297 | |
| 17298 | template <typename T, typename Function, bool is_yielding> |
nothing calls this directly
no test coverage detected