| 8 | class LuaScript : public Object { |
| 9 | public: |
| 10 | LuaScript(std::string str) : str(std::move(str)) {} |
| 11 | const std::string& GetText() const noexcept { return str; } |
| 12 | private: |
| 13 | std::string str; |
nothing calls this directly
no outgoing calls
no test coverage detected