MCPcopy Create free account
hub / github.com/GDRETools/gdsdecomp / get_dependencies

Method get_dependencies

utility/import_info.cpp:1327–1334  ·  view source on GitHub ↗

virtual Dictionary get_libaries_section() const;

Source from the content-addressed store, hash-verified

1325
1326// virtual Dictionary get_libaries_section() const;
1327Vector<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
1336HashMap<String, Vector<SharedObject>> ImportInfoGDExt::get_grouped_dependencies(bool fix_rel_paths) const {
1337 HashMap<String, Vector<SharedObject>> deps;

Callers 2

export_resourceMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected