| 139 | } |
| 140 | |
| 141 | void LuaBaseComponent::contextSetup() { |
| 142 | m_context->setPath("self", m_context->createTable()); |
| 143 | |
| 144 | for (auto const& p : m_callbacks) |
| 145 | m_context->setCallbacks(p.first, p.second); |
| 146 | } |
| 147 | |
| 148 | void LuaBaseComponent::contextShutdown() {} |
| 149 |
nothing calls this directly
no test coverage detected