(file, arch)
| 913 | } |
| 914 | |
| 915 | function objectFileMatchesArchPath(file, arch) { |
| 916 | const normalized = file.split(path.sep).join("/"); |
| 917 | return ( |
| 918 | normalized.includes(`/Objects-normal/${arch}/`) || |
| 919 | !normalized.includes("/Objects-normal/") |
| 920 | ); |
| 921 | } |
| 922 | |
| 923 | function* walkFiles(root) { |
| 924 | for (const entry of fs.readdirSync(root, { withFileTypes: true })) { |
no outgoing calls
no test coverage detected