| 89 | } |
| 90 | |
| 91 | LuaContext LuaRoot::createContext(String const& script) { |
| 92 | return createContext(StringList{script}); |
| 93 | } |
| 94 | |
| 95 | LuaContext LuaRoot::createContext(StringList const& scriptPaths) { |
| 96 | auto newContext = m_luaEngine->createContext(); |
no test coverage detected