Build Information
Failed to build LStXML2Code, reference main (a2b2b1
), with Swift 6.2 (beta) for Android on 23 Jun 2025 04:21:03 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bastie/LStXML2Code.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/bastie/LStXML2Code
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at a2b2b15 Merge pull request #1 from bastie/swift6
Cloned https://github.com/bastie/LStXML2Code.git
Revision (git rev-parse @):
a2b2b153cf7d596d6481ecffb41c9af249f31d25
SUCCESS checkout https://github.com/bastie/LStXML2Code.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/bastie/LStXML2Code.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Fetching https://github.com/bastie/JavApi4Swift.git
[1/31303] Fetching javapi4swift
Fetched https://github.com/bastie/JavApi4Swift.git from cache (4.77s)
Computing version for https://github.com/bastie/JavApi4Swift.git
Computed https://github.com/bastie/JavApi4Swift.git at 0.26.1 (5.50s)
Creating working copy for https://github.com/bastie/JavApi4Swift.git
Working copy of https://github.com/bastie/JavApi4Swift.git resolved at 0.26.1
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-8C5A4AE7A8CE2BA.txt
[4/29] Compiling LStXML2Code NumericNode.swift
[5/29] Compiling LStXML2Code OpenRoundBracketNode.swift
[6/29] Compiling LStXML2Code OpenSquareBracketNode.swift
[7/32] Compiling LStXML2Code ClosedRoundBracketNode.swift
[8/32] Compiling LStXML2Code ClosedSquareBracketNode.swift
[9/32] Compiling LStXML2Code DotNode.swift
[10/32] Compiling LStXML2Code Node.swift
[11/32] Compiling LStXML2Code AssignNode.swift
[12/32] Compiling LStXML2Code CharNode.swift
[13/32] Compiling LStXML2Code PAPXmlParser.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:8:32: error: cannot find type 'XMLParserDelegate' in scope
6 |
7 |
8 | class PAPXmlParser : NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
9 |
10 | private var currentNode : Node?
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:16:48: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
14 | }
15 |
16 | public func parserDidStartDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
17 | //print("Line number: \(parser.lineNumber)")
18 | }
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/LStXML2Code/PAPXmlParser.swift:20:46: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
18 | }
19 |
20 | public func parserDidEndDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
21 | //print("Line number: \(parser.lineNumber)")
22 | }
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/LStXML2Code/PAPXmlParser.swift:25:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
23 |
24 | // parse comment
25 | public func parser(_ parser: XMLParser, foundComment comment: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
26 | let node = Node (newParent: self.currentNode)
27 | node.setName("Comment")
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/LStXML2Code/PAPXmlParser.swift:35:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
33 |
34 | // parse tag (start)
35 | public func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
36 | // create new node
37 | let node = Node (newParent: self.currentNode)
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/LStXML2Code/PAPXmlParser.swift:46:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
44 |
45 | // parse tag (end)
46 | public func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
47 |
48 | if let current = self.currentNode {
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/LStXML2Code/PAPXmlParser.swift:62:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
60 |
61 | // In result of parse text never is calling with existing XMLs the functions throws fatalError
62 | public 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.
63 | if (!string.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty) {
64 | fatalError("Text not expected but found \(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/LStXML2Code/XmlPAP.swift:18:18: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
16 | let delegate = PAPXmlParser(newAst: result)
17 |
18 | let parser = XMLParser(data: xmlData)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
19 | parser.delegate = delegate
20 | parser.parse()
[14/32] Compiling LStXML2Code TwoPartDecisionNode.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:8:32: error: cannot find type 'XMLParserDelegate' in scope
6 |
7 |
8 | class PAPXmlParser : NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
9 |
10 | private var currentNode : Node?
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:16:48: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
14 | }
15 |
16 | public func parserDidStartDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
17 | //print("Line number: \(parser.lineNumber)")
18 | }
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/LStXML2Code/PAPXmlParser.swift:20:46: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
18 | }
19 |
20 | public func parserDidEndDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
21 | //print("Line number: \(parser.lineNumber)")
22 | }
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/LStXML2Code/PAPXmlParser.swift:25:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
23 |
24 | // parse comment
25 | public func parser(_ parser: XMLParser, foundComment comment: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
26 | let node = Node (newParent: self.currentNode)
27 | node.setName("Comment")
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/LStXML2Code/PAPXmlParser.swift:35:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
33 |
34 | // parse tag (start)
35 | public func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
36 | // create new node
37 | let node = Node (newParent: self.currentNode)
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/LStXML2Code/PAPXmlParser.swift:46:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
44 |
45 | // parse tag (end)
46 | public func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
47 |
48 | if let current = self.currentNode {
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/LStXML2Code/PAPXmlParser.swift:62:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
60 |
61 | // In result of parse text never is calling with existing XMLs the functions throws fatalError
62 | public 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.
63 | if (!string.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty) {
64 | fatalError("Text not expected but found \(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/LStXML2Code/XmlPAP.swift:18:18: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
16 | let delegate = PAPXmlParser(newAst: result)
17 |
18 | let parser = XMLParser(data: xmlData)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
19 | parser.delegate = delegate
20 | parser.parse()
[15/32] Compiling LStXML2Code XmlPAP.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:8:32: error: cannot find type 'XMLParserDelegate' in scope
6 |
7 |
8 | class PAPXmlParser : NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
9 |
10 | private var currentNode : Node?
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:16:48: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
14 | }
15 |
16 | public func parserDidStartDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
17 | //print("Line number: \(parser.lineNumber)")
18 | }
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/LStXML2Code/PAPXmlParser.swift:20:46: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
18 | }
19 |
20 | public func parserDidEndDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
21 | //print("Line number: \(parser.lineNumber)")
22 | }
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/LStXML2Code/PAPXmlParser.swift:25:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
23 |
24 | // parse comment
25 | public func parser(_ parser: XMLParser, foundComment comment: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
26 | let node = Node (newParent: self.currentNode)
27 | node.setName("Comment")
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/LStXML2Code/PAPXmlParser.swift:35:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
33 |
34 | // parse tag (start)
35 | public func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
36 | // create new node
37 | let node = Node (newParent: self.currentNode)
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/LStXML2Code/PAPXmlParser.swift:46:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
44 |
45 | // parse tag (end)
46 | public func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
47 |
48 | if let current = self.currentNode {
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/LStXML2Code/PAPXmlParser.swift:62:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
60 |
61 | // In result of parse text never is calling with existing XMLs the functions throws fatalError
62 | public 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.
63 | if (!string.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty) {
64 | fatalError("Text not expected but found \(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/LStXML2Code/XmlPAP.swift:18:18: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
16 | let delegate = PAPXmlParser(newAst: result)
17 |
18 | let parser = XMLParser(data: xmlData)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
19 | parser.delegate = delegate
20 | parser.parse()
error: emit-module command failed with exit code 1 (use -v to see invocation)
[16/32] Compiling LStXML2Code AbstractTree.swift
[17/32] Compiling LStXML2Code AbstractTreeEncoder.swift
[18/32] Compiling LStXML2Code AbstractTreeEncoding.swift
[19/32] Emitting module LStXML2Code
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:8:32: error: cannot find type 'XMLParserDelegate' in scope
6 |
7 |
8 | class PAPXmlParser : NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
9 |
10 | private var currentNode : Node?
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:16:48: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
14 | }
15 |
16 | public func parserDidStartDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
17 | //print("Line number: \(parser.lineNumber)")
18 | }
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/LStXML2Code/PAPXmlParser.swift:20:46: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
18 | }
19 |
20 | public func parserDidEndDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
21 | //print("Line number: \(parser.lineNumber)")
22 | }
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/LStXML2Code/PAPXmlParser.swift:25:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
23 |
24 | // parse comment
25 | public func parser(_ parser: XMLParser, foundComment comment: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
26 | let node = Node (newParent: self.currentNode)
27 | node.setName("Comment")
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/LStXML2Code/PAPXmlParser.swift:35:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
33 |
34 | // parse tag (start)
35 | public func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
36 | // create new node
37 | let node = Node (newParent: self.currentNode)
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/LStXML2Code/PAPXmlParser.swift:46:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
44 |
45 | // parse tag (end)
46 | public func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
47 |
48 | if let current = self.currentNode {
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/LStXML2Code/PAPXmlParser.swift:62:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
60 |
61 | // In result of parse text never is calling with existing XMLs the functions throws fatalError
62 | public 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.
63 | if (!string.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty) {
64 | fatalError("Text not expected but found \(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
[20/32] Compiling LStXML2Code SpaceNode.swift
[21/32] Compiling LStXML2Code ValueNode.swift
[22/32] Compiling LStXML2Code PAPTree.swift
[23/32] Compiling LStXML2Code PAPTreeEncoder.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:747:32: warning: will never be executed
743 | }
744 | else {
745 | fatalError("unsupported content detected: \(detected)")
| `- note: a call to a never-returning function
746 |
747 | callDetected = false
| `- warning: will never be executed
748 | callNewInstanceDetected = false
749 | assignmentDetected = false
[24/32] Compiling LStXML2Code PAPTreeEncoding.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:747:32: warning: will never be executed
743 | }
744 | else {
745 | fatalError("unsupported content detected: \(detected)")
| `- note: a call to a never-returning function
746 |
747 | callDetected = false
| `- warning: will never be executed
748 | callNewInstanceDetected = false
749 | assignmentDetected = false
[25/32] Compiling LStXML2Code PAPTreeEncodingImpl.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:747:32: warning: will never be executed
743 | }
744 | else {
745 | fatalError("unsupported content detected: \(detected)")
| `- note: a call to a never-returning function
746 |
747 | callDetected = false
| `- warning: will never be executed
748 | callNewInstanceDetected = false
749 | assignmentDetected = false
[26/32] Compiling LStXML2Code FloatNumberNode.swift
[27/32] Compiling LStXML2Code IdentiferNode.swift
[28/32] Compiling LStXML2Code IntNumberNode.swift
BUILD FAILURE 6.2 android