Build Information
Failed to build AudioMarker, reference main (ce0ac0), with Swift 6.3 for Wasm on 18 Apr 2026 14:41:00 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/atelier-socle/swift-audio-marker.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/atelier-socle/swift-audio-marker
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at ce0ac0c chore: relicense from MIT to Apache License 2.0
Cloned https://github.com/atelier-socle/swift-audio-marker.git
Revision (git rev-parse @):
ce0ac0cfdea03e5c8f74a06c4dbcff1d48d35e17
SUCCESS checkout https://github.com/atelier-socle/swift-audio-marker.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/atelier-socle/swift-audio-marker.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/apple/swift-argument-parser.git
[1/17529] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.29s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.7.1 (2.33s)
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.7.1
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/15] Write sources
[7/15] Write swift-version-24593BA9C3E375BF.txt
[9/91] Emitting module ArgumentParserToolInfo
error: emit-module command failed with exit code 1 (use -v to see invocation)
[10/91] Emitting module AudioMarker
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
[11/101] Compiling ArgumentParserToolInfo ToolInfo.swift
[12/102] Wrapping AST for ArgumentParserToolInfo for debugging
[14/148] Compiling AudioMarker FileReader.swift
[15/148] Compiling AudioMarker FileWriter.swift
[16/148] Compiling AudioMarker StreamingConstants.swift
[17/148] Compiling AudioMarker StreamingError.swift
[18/148] Compiling AudioMarker AudioValidator.swift
[19/148] Compiling AudioMarker ChapterValidationRules.swift
[20/148] Compiling AudioMarker MetadataValidationRules.swift
[21/148] Compiling AudioMarker ValidationIssue.swift
[22/148] Compiling AudioMarker ValidationResult.swift
[23/148] Compiling AudioMarker ValidationRule.swift
[24/148] Compiling ArgumentParser BashCompletionsGenerator.swift
[25/148] Compiling ArgumentParser CompletionsGenerator.swift
[26/148] Compiling ArgumentParser FishCompletionsGenerator.swift
[27/148] Compiling ArgumentParser ZshCompletionsGenerator.swift
[28/148] Compiling ArgumentParser Argument.swift
[29/148] Compiling ArgumentParser ArgumentDiscussion.swift
[30/148] Compiling ArgumentParser ArgumentHelp.swift
[31/148] Compiling ArgumentParser ArgumentVisibility.swift
[32/148] Compiling ArgumentParser CompletionKind.swift
[33/148] Compiling ArgumentParser Errors.swift
[34/148] Compiling ArgumentParser Flag.swift
[35/148] Compiling AudioMarker PodloveXMLExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[36/148] Compiling AudioMarker SRTExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[37/148] Compiling AudioMarker TTMLAgent.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[38/148] Compiling AudioMarker TTMLDocument.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[39/148] Compiling AudioMarker TTMLExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[40/148] Compiling AudioMarker TTMLParseError.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[41/148] Compiling AudioMarker TTMLParser.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[42/148] Compiling AudioMarker TTMLRegion.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[43/148] Compiling AudioMarker TTMLStyle.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[44/148] Compiling AudioMarker TTMLTimeParser.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[45/148] Compiling AudioMarker WebVTTExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:57: error: cannot find type 'XMLParserDelegate' in scope
93 | // MARK: - XML Parser Delegate
94 |
95 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
96 |
97 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:101:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
99 |
100 | func parser(
101 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
102 | didStartElement elementName: String,
103 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:65:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
63 | }
64 | let delegate = PodloveXMLParserDelegate()
65 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
66 | parser.delegate = delegate
67 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:112:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
110 | guard let startString = attributes["start"] else {
111 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
112 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
113 | return
114 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:117:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
115 | guard let title = attributes["title"] else {
116 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
117 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
118 | return
119 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:127:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
125 | } catch {
126 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
127 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
128 | }
129 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:96:51: error: cannot find type 'XMLParserDelegate' in scope
94 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
95 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
96 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
97 |
98 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:200:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
198 |
199 | func parser(
200 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
201 | didStartElement elementName: String,
202 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:225:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
223 |
224 | func parser(
225 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
226 | didEndElement elementName: String,
227 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:246:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
244 | }
245 |
246 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
247 | if inSpan {
248 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:256:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
254 | }
255 |
256 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 | if self.parseError == nil {
258 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:60:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
58 | public func parseDocument(from data: Data) throws -> TTMLDocument {
59 | let delegate = TTMLParserDelegate()
60 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
61 | xmlParser.delegate = delegate
62 | xmlParser.shouldProcessNamespaces = true
[46/148] Compiling ArgumentParser CommandConfiguration.swift
[47/148] Compiling ArgumentParser CommandGroup.swift
[48/148] Compiling ArgumentParser EnumerableFlag.swift
[49/148] Compiling ArgumentParser ExpressibleByArgument.swift
[50/148] Compiling ArgumentParser ParsableArguments.swift
[51/148] Compiling ArgumentParser DumpHelpGenerator.swift
[52/148] Compiling ArgumentParser HelpCommand.swift
[53/148] Compiling ArgumentParser HelpGenerator.swift
[54/148] Compiling ArgumentParser MessageInfo.swift
[55/148] Compiling ArgumentParser UsageGenerator.swift
[56/148] Compiling ArgumentParser NameSpecification.swift
[57/148] Compiling ArgumentParser Option.swift
[58/148] Compiling ArgumentParser OptionGroup.swift
[59/148] Compiling ArgumentParser InputOrigin.swift
[60/148] Compiling ArgumentParser Name.swift
[61/148] Compiling ArgumentParser Parsed.swift
[62/148] Compiling ArgumentParser ParsedValues.swift
[63/148] Compiling ArgumentParser ParserError.swift
[64/148] Compiling ArgumentParser SplitArguments.swift
[65/148] Compiling ArgumentParser ParentCommand.swift
[66/148] Compiling ArgumentParser AsyncParsableCommand.swift
[67/148] Compiling ArgumentParser CollectionExtensions.swift
[68/148] Compiling ArgumentParser ParsableCommand.swift
[69/148] Compiling ArgumentParser ArgumentDecoder.swift
[70/148] Compiling ArgumentParser ArgumentDefinition.swift
[71/148] Compiling ArgumentParser ArgumentSet.swift
[72/148] Compiling ArgumentParser CommandParser.swift
[73/148] Compiling ArgumentParser InputKey.swift
[74/148] Compiling ArgumentParser Foundation.swift
[75/148] Compiling ArgumentParser Mutex.swift
[76/148] Compiling ArgumentParser Platform.swift
[77/148] Compiling ArgumentParser SequenceExtensions.swift
[78/148] Compiling ArgumentParser StringExtensions.swift
[79/148] Compiling ArgumentParser SwiftExtensions.swift
[80/148] Compiling AudioMarker MP4AtomParser.swift
[81/148] Compiling AudioMarker MP4AtomType.swift
[82/148] Compiling AudioMarker MP4ChapterBuilder.swift
[83/148] Compiling AudioMarker MP4ChapterParser.swift
[84/148] Compiling AudioMarker MP4Error.swift
[85/148] Compiling AudioMarker MP4MetadataBuilder.swift
[86/148] Compiling AudioMarker MP4MetadataParser.swift
[87/148] Compiling AudioMarker MP4MoovBuilder.swift
[88/148] Compiling AudioMarker MP4Reader.swift
[89/148] Compiling AudioMarker MP4TextTrackBuilder.swift
[90/148] Compiling AudioMarker MP4VideoTrackBuilder.swift
[91/148] Compiling AudioMarker MP4Writer.swift
[92/148] Compiling AudioMarker Artwork.swift
[93/148] Compiling AudioMarker ArtworkFormat.swift
[94/148] Compiling AudioMarker AudioFileInfo.swift
[95/148] Compiling AudioMarker AudioMetadata.swift
[96/148] Compiling AudioMarker AudioTimestamp.swift
BUILD FAILURE 6.3 wasm