The Swift Package Index logo.Swift Package Index

Build Information

Failed to build FluentSeeder, reference master (87ecd1), with Swift 6.2 for Android on 22 Jun 2025 22:39:19 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[366/1284] Compiling Swiftest String+Aggregate.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[367/1284] Compiling Swiftest String+Base64.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[368/1284] Compiling Swiftest String+CharacterSet.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[369/1284] Compiling Swiftest String+Cleaning.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[370/1284] Compiling Swiftest String+ContentParsing.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[371/1284] Compiling Swiftest String+DataDetection.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[372/1284] Compiling _RopeModule BigString+Split.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[373/1284] Compiling _RopeModule Range+BigString.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[374/1284] Compiling _RopeModule BigString+UTF16View.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[375/1284] Compiling _RopeModule BigString+UTF8View.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[376/1284] Compiling _RopeModule BigString+UnicodeScalarView.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[377/1284] Compiling _RopeModule BigSubstring+UTF16View.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[378/1284] Compiling _RopeModule BigSubstring+UTF8View.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[379/1284] Compiling _RopeModule BigSubstring+UnicodeScalarView.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[380/1284] Compiling _RopeModule BigSubstring.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[381/1284] Compiling _RopeModule Rope+Builder.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[382/1284] Compiling _RopeModule Rope+Debugging.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[383/1284] Compiling _RopeModule Rope+Invariants.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[384/1284] Compiling _RopeModule Rope+_Node.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[385/1284] Compiling _RopeModule Rope+_Storage.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[386/1284] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[387/1284] Compiling _RopeModule Rope+_UnsafeHandle.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[388/1284] Compiling _RopeModule Rope.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[389/1284] Compiling _RopeModule RopeElement.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 |     public typealias EventHandler = (T) -> Void
24 |     public var notificationsEnabled: Bool = true
25 |     public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                             `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 |     public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                `- error: cannot find 'NSMapTable' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 |     public typealias EventHandler = VoidClosure
64 |     public var notificationsEnabled: Bool = true
65 |     public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
   |                                                                                     `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 |     public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
   |                                                                                                  `- error: '#selector' can only be used with the Objective-C runtime
19 |     }()
20 |     public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 |     open var refreshing: Bool = false
16 |     open var refreshFrequency: Double = 60
17 |     open lazy var timer: Timer = {
   |                                  `- error: type of expression is ambiguous without a type annotation
18 |         return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 |     }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 |     }
36 |
37 |     @objc open func refreshTimerFired() {
   |      `- error: Objective-C interoperability is disabled
38 |         if !needsRefresh() {
39 |             refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 |     //Override to add network polling implementation. Call super to maintain state
48 |     @objc open func refresh() {
   |      `- error: Objective-C interoperability is disabled
49 |         self.refreshing = true
50 |     }
[390/1284] Compiling Swiftest Dictionary+Merging.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[391/1284] Compiling Swiftest Equatable+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[392/1284] Compiling Swiftest FloatingPoint+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[393/1284] Compiling Swiftest Int+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[394/1284] Compiling Swiftest Int+Loop.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[395/1284] Compiling Swiftest Int+WrappedToRange.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[396/1284] Compiling Swiftest Optional+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[397/1284] Compiling Swiftest Optional+EmptyCollections.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[398/1284] Compiling Swiftest Sequence+Aggregate.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[399/1284] Compiling Swiftest Sequence+BooleanTests.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[400/1284] Compiling Swiftest Sequence+Grouping.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[401/1284] Compiling Swiftest Sequence+Indexing.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[402/1284] Compiling Swiftest Sequence+Iterating.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[403/1284] Compiling Swiftest Sequence+KeyPathSorting.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[404/1284] Compiling Swiftest Sequence+KeyPathValues.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[405/1284] Compiling Swiftest Sequence+Search.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[406/1284] Compiling Swiftest Sequence+Transformed.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[407/1284] Compiling Swiftest Set+ContentAnalysis.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[408/1284] Compiling OrderedCollections _HashTable+Bucket.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[409/1284] Compiling OrderedCollections _HashTable+BucketIterator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[410/1284] Compiling OrderedCollections _HashTable+Constants.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[411/1284] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[412/1284] Compiling OrderedCollections _HashTable+Testing.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[413/1284] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[414/1284] Compiling OrderedCollections _HashTable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[415/1284] Compiling OrderedCollections _Hashtable+Header.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
BUILD FAILURE 6.2 android