| 1483 | } |
| 1484 | |
| 1485 | Dictionary ImportInfoGDExt::get_dependency_dict() const { |
| 1486 | Dictionary dict; |
| 1487 | if (cf->has_section("dependencies")) { |
| 1488 | Vector<String> dep_keys = cf->get_section_keys("dependencies"); |
| 1489 | for (int64_t i = 0; i < dep_keys.size(); i++) { |
| 1490 | dict[dep_keys[i]] = cf->get_value("dependencies", dep_keys[i], Dictionary()); |
| 1491 | } |
| 1492 | } |
| 1493 | return dict; |
| 1494 | } |
| 1495 | |
| 1496 | void ImportInfoGDExt::set_dependency_dict(const Dictionary &p_dict) { |
| 1497 | for (auto &KV : p_dict) { |
no test coverage detected