| 60 | } |
| 61 | |
| 62 | void ExtensionState::InitializeLuaState() |
| 63 | { |
| 64 | context_ = nextContext_; |
| 65 | se_assert(context_ != ExtensionStateContext::Uninitialized); |
| 66 | EnteredCheck(); |
| 67 | |
| 68 | Lua = std::make_unique<lua::ClientState>(*this, nextGenerationId_++); |
| 69 | Lua->Initialize(); |
| 70 | } |
| 71 | |
| 72 | void ExtensionState::BootstrapLua() |
| 73 | { |
nothing calls this directly
no test coverage detected