(args, derivedDataPath)
| 665 | } |
| 666 | |
| 667 | function xcodeCacheIdentity(args, derivedDataPath) { |
| 668 | return { |
| 669 | configuration: String(args.configuration ?? "Debug"), |
| 670 | derivedDataPath, |
| 671 | destination: String(args.destination ?? "generic/platform=iOS Simulator"), |
| 672 | project: args.project ? path.resolve(String(args.project)) : "", |
| 673 | scheme: String(args.scheme), |
| 674 | target: String(args.target ?? ""), |
| 675 | workspace: args.workspace ? path.resolve(String(args.workspace)) : "", |
| 676 | }; |
| 677 | } |
| 678 | |
| 679 | function readCachedXcodeContext(context, identity) { |
| 680 | const cachePath = xcodeContextCachePath(context); |
no outgoing calls
no test coverage detected