| 41 | } |
| 42 | |
| 43 | inline void print_stack(lua_State* L) { |
| 44 | std::cout << dump_types(L) << std::endl; |
| 45 | } |
| 46 | |
| 47 | inline void print_section(const std::string& message, lua_State* L) { |
| 48 | std::cout << "-- " << message << " -- [ " << dump_types(L) << " ]" << std::endl; |
nothing calls this directly
no test coverage detected