virtual Dictionary get_libaries_section() const;
| 1325 | |
| 1326 | // virtual Dictionary get_libaries_section() const; |
| 1327 | Vector<SharedObject> ImportInfoGDExt::get_dependencies(bool fix_rel_paths) const { |
| 1328 | Vector<SharedObject> deps; |
| 1329 | auto ret = get_grouped_dependencies(fix_rel_paths); |
| 1330 | for (auto &KV : ret) { |
| 1331 | deps.append_array(KV.value); |
| 1332 | } |
| 1333 | return deps; |
| 1334 | } |
| 1335 | |
| 1336 | HashMap<String, Vector<SharedObject>> ImportInfoGDExt::get_grouped_dependencies(bool fix_rel_paths) const { |
| 1337 | HashMap<String, Vector<SharedObject>> deps; |
no outgoing calls
no test coverage detected