| 505 | return Lua::SafeCall(out, State, nargs, nres, perr); |
| 506 | } |
| 507 | inline bool PushModule(color_ostream &out, const char *module) { |
| 508 | auto State = DFHack::Core::getInstance().getLuaState(); |
| 509 | return Lua::PushModule(out, State, module); |
| 510 | } |
| 511 | inline bool PushModulePublic(color_ostream &out, const char *module, const char *name) { |
| 512 | auto State = DFHack::Core::getInstance().getLuaState(); |
| 513 | return Lua::PushModulePublic(out, State, module, name); |
no outgoing calls
no test coverage detected