| 148 | } |
| 149 | |
| 150 | bool Sapphire::Scripting::ScriptLoader::isModuleLoaded( std::string name ) |
| 151 | { |
| 152 | for( auto it = m_scriptMap.begin(); it != m_scriptMap.end(); ++it ) |
| 153 | { |
| 154 | |
| 155 | if( Common::Util::toLowerCopy( it->second->library_name ) == Common::Util::toLowerCopy( name ) ) |
| 156 | return true; |
| 157 | } |
| 158 | |
| 159 | return false; |
| 160 | } |
| 161 | |
| 162 | Sapphire::Scripting::ScriptInfo* Sapphire::Scripting::ScriptLoader::getScriptInfo( std::string name ) |
| 163 | { |
no test coverage detected