| 58 | } |
| 59 | |
| 60 | const ScriptConfigItemList *ScriptConfig::GetConfigList() |
| 61 | { |
| 62 | if (this->info != nullptr) return this->info->GetConfigList(); |
| 63 | if (this->config_list == nullptr) { |
| 64 | this->config_list = std::make_unique<ScriptConfigItemList>(); |
| 65 | } |
| 66 | return this->config_list.get(); |
| 67 | } |
| 68 | |
| 69 | void ScriptConfig::ClearConfigList() |
| 70 | { |
no test coverage detected