MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / gather_dependencies

Function gather_dependencies

nix/build-all.py:354–359  ·  view source on GitHub ↗
(dep: str)

Source from the content-addressed store, hash-verified

352
353
354def gather_dependencies(dep: str) -> "Generator[str]":
355 yield dep
356 for d in dependency_tree[dep]:
357 if f"without-{d.lower()}" not in flags:
358 for x in gather_dependencies(d):
359 yield x
360
361
362if "v" in flags:

Callers 1

build-all.pyFile · 0.85

Calls 1

lowerMethod · 0.80

Tested by

no test coverage detected