MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / check_deps

Function check_deps

bootstrap.py:50–58  ·  view source on GitHub ↗
(name, deps)

Source from the content-addressed store, hash-verified

48
49
50def check_deps(name, deps):
51 stamp_file = get_stamp_file(name)
52 if not os.path.exists(stamp_file):
53 return False
54 for dep in deps:
55 dep = utils.path_from_root(dep)
56 if os.path.getmtime(dep) > os.path.getmtime(stamp_file):
57 return False
58 return True
59
60
61def check():

Callers 2

checkFunction · 0.85
mainFunction · 0.85

Calls 2

get_stamp_fileFunction · 0.85
existsMethod · 0.80

Tested by

no test coverage detected