MCPcopy Create free account
hub / github.com/SolaWing/xcode-build-server / findAllSwiftFiles

Function findAllSwiftFiles

compile_database.py:80–84  ·  view source on GitHub ↗
(rootDirectory)

Source from the content-addressed store, hash-verified

78
79
80def findAllSwiftFiles(rootDirectory):
81 output = subprocess.check_output(
82 ["find", "-H", rootDirectory, "-name", "*.swift"], universal_newlines=True
83 )
84 return [os.path.realpath(l) for l in output.splitlines()]
85
86
87def cmd_split(s):

Callers 1

InferFlagsForSwiftFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected