MCPcopy Create free account
hub / github.com/WebAssembly/wabt / FindFiles

Function FindFiles

scripts/gen-emscripten-exported-json.py:34–41  ·  view source on GitHub ↗
(cmake_build_dir)

Source from the content-addressed store, hash-verified

32
33
34def FindFiles(cmake_build_dir):
35 result = []
36 for root, dirs, files in os.walk(cmake_build_dir):
37 for file_ in files:
38 path = os.path.join(root, file_)
39 if file_ == 'libwabt.a' or re.search(r'emscripten-helpers', file_):
40 result.append(path)
41 return result
42
43
44def GetNM(emscripten_dir):

Callers 1

mainFunction · 0.85

Calls 2

joinMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected