Build Information
Failed to build LStXML2Code, reference main (1476b0
), with Swift 6.0 for Linux on 3 Nov 2024 23:48:44 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.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 1476b05 BugFix doppelte Kommentare in der Ausgabe des Quelltextes
Cloned https://github.com/bastie/LStXML2Code.git
Revision (git rev-parse @):
1476b05e416dc2b70104e4053596c1ab4438ff01
SUCCESS checkout https://github.com/bastie/LStXML2Code.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/bastie/LStXML2Code.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/bastie/JavApi4Swift.git
[1/30992] Fetching javapi4swift
Fetched https://github.com/bastie/JavApi4Swift.git from cache (3.21s)
Computing version for https://github.com/bastie/JavApi4Swift.git
Computed https://github.com/bastie/JavApi4Swift.git at 0.19.1 (0.71s)
Creating working copy for https://github.com/bastie/JavApi4Swift.git
Working copy of https://github.com/bastie/JavApi4Swift.git resolved at 0.19.1
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/29] Emitting module LStXML2Code
/host/spi-builder-workspace/Sources/LStXML2Code/Nodes/CharNode.swift:16:14: warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | let char : Character
15 |
16 | static var initiated : [Character:CharNode] = [:]
| |- warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'initiated' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'initiated' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public static func value (of newChar : Character) -> CharNode {
18 | if let result = initiated[newChar] {
/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
[5/32] Compiling LStXML2Code NumericNode.swift
[6/32] Compiling LStXML2Code OpenRoundBracketNode.swift
[7/32] Compiling LStXML2Code OpenSquareBracketNode.swift
[8/32] Compiling LStXML2Code Node.swift
/host/spi-builder-workspace/Sources/LStXML2Code/Nodes/CharNode.swift:16:14: warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | let char : Character
15 |
16 | static var initiated : [Character:CharNode] = [:]
| |- warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'initiated' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'initiated' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public static func value (of newChar : Character) -> CharNode {
18 | if let result = initiated[newChar] {
[9/32] Compiling LStXML2Code AssignNode.swift
/host/spi-builder-workspace/Sources/LStXML2Code/Nodes/CharNode.swift:16:14: warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | let char : Character
15 |
16 | static var initiated : [Character:CharNode] = [:]
| |- warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'initiated' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'initiated' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public static func value (of newChar : Character) -> CharNode {
18 | if let result = initiated[newChar] {
[10/32] Compiling LStXML2Code CharNode.swift
/host/spi-builder-workspace/Sources/LStXML2Code/Nodes/CharNode.swift:16:14: warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | let char : Character
15 |
16 | static var initiated : [Character:CharNode] = [:]
| |- warning: static property 'initiated' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'initiated' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'initiated' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public static func value (of newChar : Character) -> CharNode {
18 | if let result = initiated[newChar] {
[11/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()
[12/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()
[13/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()
[14/32] Compiling LStXML2Code SpaceNode.swift
[15/32] Compiling LStXML2Code ValueNode.swift
[16/32] Compiling LStXML2Code PAPTree.swift
[17/32] Compiling LStXML2Code FloatNumberNode.swift
/host/spi-builder-workspace/Sources/LStXML2Code/Nodes/FloatNumberNode.swift:28:12: warning: value 'newValue' was defined but never used; consider replacing with boolean test
26 | /// Set the new Value and return the oldValue. On error return nil
27 | public func setValue (stringRepresentation : String) -> Double?{
28 | if let newValue = Double(stringRepresentation) {
| `- warning: value 'newValue' was defined but never used; consider replacing with boolean test
29 | let oldValue = self.asString
30 | self.asString = stringRepresentation
[18/32] Compiling LStXML2Code IdentiferNode.swift
/host/spi-builder-workspace/Sources/LStXML2Code/Nodes/FloatNumberNode.swift:28:12: warning: value 'newValue' was defined but never used; consider replacing with boolean test
26 | /// Set the new Value and return the oldValue. On error return nil
27 | public func setValue (stringRepresentation : String) -> Double?{
28 | if let newValue = Double(stringRepresentation) {
| `- warning: value 'newValue' was defined but never used; consider replacing with boolean test
29 | let oldValue = self.asString
30 | self.asString = stringRepresentation
[19/32] Compiling LStXML2Code IntNumberNode.swift
/host/spi-builder-workspace/Sources/LStXML2Code/Nodes/FloatNumberNode.swift:28:12: warning: value 'newValue' was defined but never used; consider replacing with boolean test
26 | /// Set the new Value and return the oldValue. On error return nil
27 | public func setValue (stringRepresentation : String) -> Double?{
28 | if let newValue = Double(stringRepresentation) {
| `- warning: value 'newValue' was defined but never used; consider replacing with boolean test
29 | let oldValue = self.asString
30 | self.asString = stringRepresentation
[20/32] Compiling LStXML2Code ClosedRoundBracketNode.swift
[21/32] Compiling LStXML2Code ClosedSquareBracketNode.swift
[22/32] Compiling LStXML2Code DotNode.swift
[23/32] Compiling LStXML2Code PAPTreeEncoder.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:27:9: warning: result of call to 'exec(stmt:)' is unused
25 | newNode.addAttribute(name, value)
26 | if name == "exec" {
27 | exec(stmt: value)
| `- warning: result of call to 'exec(stmt:)' is unused
28 | }
29 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:171:21: warning: value 'nextNode' was defined but never used; consider replacing with boolean test
169 | position.count += 1
170 | }
171 | else if let nextNode = node as? DotNode { // maybe it is a float value
| `- warning: value 'nextNode' was defined but never used; consider replacing with boolean test
172 | if let _ = number {
173 | number!.append(".") // better generator error than runtime error, so ! instead of ? is using
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:233:14: warning: value 'dot' was defined but never used; consider replacing with boolean test
231 |
232 | for i in 0..<asNodes.count {
233 | if let dot = asNodes[i] as? DotNode {
| `- warning: value 'dot' was defined but never used; consider replacing with boolean test
234 | if let receiver = asNodes[i-1] as? ValueNode,
235 | let message = asNodes[i+1] as? ValueNode {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:234:16: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
232 | for i in 0..<asNodes.count {
233 | if let dot = asNodes[i] as? DotNode {
234 | if let receiver = asNodes[i-1] as? ValueNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
235 | let message = asNodes[i+1] as? ValueNode {
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:235:16: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
233 | if let dot = asNodes[i] as? DotNode {
234 | if let receiver = asNodes[i-1] as? ValueNode,
235 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
237 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:238:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
237 | }
238 | else if let receiver = asNodes[i-1] as? IdentiferNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
239 | let message = asNodes[i+1] as? ValueNode {
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:239:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
237 | }
238 | else if let receiver = asNodes[i-1] as? IdentiferNode,
239 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
241 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:242:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
241 | }
242 | else if let receiver = asNodes[i-1] as? ClosedRoundBracketNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
243 | let message = asNodes[i+1] as? ValueNode {
244 | //print ("call \(message.getValue()) on result of before")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:243:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
241 | }
242 | else if let receiver = asNodes[i-1] as? ClosedRoundBracketNode,
243 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
244 | //print ("call \(message.getValue()) on result of before")
245 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:246:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
244 | //print ("call \(message.getValue()) on result of before")
245 | }
246 | else if let receiver = asNodes[i-1] as? ClosedSquareBracketNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
247 | let message = asNodes[i+1] as? ValueNode {
248 | //print ("call \(message.getValue()) on array element before")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:247:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
245 | }
246 | else if let receiver = asNodes[i-1] as? ClosedSquareBracketNode,
247 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
248 | //print ("call \(message.getValue()) on array element before")
249 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:259:15: warning: initialization of immutable value 'message' was never used; consider replacing with assignment to '_' or removing it
257 | do {
258 | var messageType : String?
259 | let message = asNodes[i+1]
| `- warning: initialization of immutable value 'message' was never used; consider replacing with assignment to '_' or removing it
260 | for var j in (i+2)..<asNodes.count {
261 | if let _ = asNodes[j] as? SpaceNode {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:267:20: warning: value 'messageType' was defined but never used; consider replacing with boolean test
265 | messageType = "METHOD"
266 | }
267 | if let messageType {
| `- warning: value 'messageType' was defined but never used; consider replacing with boolean test
268 | j = asNodes.count
269 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:271:18: warning: value 'messageType' was defined but never used; consider replacing with boolean test
269 | }
270 | }
271 | if let messageType {} else {
| `- warning: value 'messageType' was defined but never used; consider replacing with boolean test
272 | messageType = "CONSTANT"
273 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:697:18: warning: value 'numeric' was defined but never used; consider replacing with boolean test
695 | break
696 | case ".":
697 | if let numeric = Int (next) // Ziffer / Nummer?
| `- warning: value 'numeric' was defined but never used; consider replacing with boolean test
698 | //&& !numericDetected // aber nicht schon ein Dezimal erkannt => Fehler
699 | {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:764:11: warning: variable 'detected' was never mutated; consider changing to 'let' constant
762 | } // END-FOR
763 | // last part of statement
764 | var detected = next.trimmingCharacters(in: .whitespaces)
| `- warning: variable 'detected' was never mutated; consider changing to 'let' constant
765 | if detected.count > 0 {
766 | if callDetected {
/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:27:9: warning: result of call to 'exec(stmt:)' is unused
25 | newNode.addAttribute(name, value)
26 | if name == "exec" {
27 | exec(stmt: value)
| `- warning: result of call to 'exec(stmt:)' is unused
28 | }
29 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:171:21: warning: value 'nextNode' was defined but never used; consider replacing with boolean test
169 | position.count += 1
170 | }
171 | else if let nextNode = node as? DotNode { // maybe it is a float value
| `- warning: value 'nextNode' was defined but never used; consider replacing with boolean test
172 | if let _ = number {
173 | number!.append(".") // better generator error than runtime error, so ! instead of ? is using
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:233:14: warning: value 'dot' was defined but never used; consider replacing with boolean test
231 |
232 | for i in 0..<asNodes.count {
233 | if let dot = asNodes[i] as? DotNode {
| `- warning: value 'dot' was defined but never used; consider replacing with boolean test
234 | if let receiver = asNodes[i-1] as? ValueNode,
235 | let message = asNodes[i+1] as? ValueNode {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:234:16: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
232 | for i in 0..<asNodes.count {
233 | if let dot = asNodes[i] as? DotNode {
234 | if let receiver = asNodes[i-1] as? ValueNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
235 | let message = asNodes[i+1] as? ValueNode {
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:235:16: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
233 | if let dot = asNodes[i] as? DotNode {
234 | if let receiver = asNodes[i-1] as? ValueNode,
235 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
237 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:238:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
237 | }
238 | else if let receiver = asNodes[i-1] as? IdentiferNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
239 | let message = asNodes[i+1] as? ValueNode {
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:239:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
237 | }
238 | else if let receiver = asNodes[i-1] as? IdentiferNode,
239 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
241 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:242:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
241 | }
242 | else if let receiver = asNodes[i-1] as? ClosedRoundBracketNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
243 | let message = asNodes[i+1] as? ValueNode {
244 | //print ("call \(message.getValue()) on result of before")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:243:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
241 | }
242 | else if let receiver = asNodes[i-1] as? ClosedRoundBracketNode,
243 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
244 | //print ("call \(message.getValue()) on result of before")
245 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:246:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
244 | //print ("call \(message.getValue()) on result of before")
245 | }
246 | else if let receiver = asNodes[i-1] as? ClosedSquareBracketNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
247 | let message = asNodes[i+1] as? ValueNode {
248 | //print ("call \(message.getValue()) on array element before")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:247:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
245 | }
246 | else if let receiver = asNodes[i-1] as? ClosedSquareBracketNode,
247 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
248 | //print ("call \(message.getValue()) on array element before")
249 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:259:15: warning: initialization of immutable value 'message' was never used; consider replacing with assignment to '_' or removing it
257 | do {
258 | var messageType : String?
259 | let message = asNodes[i+1]
| `- warning: initialization of immutable value 'message' was never used; consider replacing with assignment to '_' or removing it
260 | for var j in (i+2)..<asNodes.count {
261 | if let _ = asNodes[j] as? SpaceNode {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:267:20: warning: value 'messageType' was defined but never used; consider replacing with boolean test
265 | messageType = "METHOD"
266 | }
267 | if let messageType {
| `- warning: value 'messageType' was defined but never used; consider replacing with boolean test
268 | j = asNodes.count
269 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:271:18: warning: value 'messageType' was defined but never used; consider replacing with boolean test
269 | }
270 | }
271 | if let messageType {} else {
| `- warning: value 'messageType' was defined but never used; consider replacing with boolean test
272 | messageType = "CONSTANT"
273 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:697:18: warning: value 'numeric' was defined but never used; consider replacing with boolean test
695 | break
696 | case ".":
697 | if let numeric = Int (next) // Ziffer / Nummer?
| `- warning: value 'numeric' was defined but never used; consider replacing with boolean test
698 | //&& !numericDetected // aber nicht schon ein Dezimal erkannt => Fehler
699 | {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:764:11: warning: variable 'detected' was never mutated; consider changing to 'let' constant
762 | } // END-FOR
763 | // last part of statement
764 | var detected = next.trimmingCharacters(in: .whitespaces)
| `- warning: variable 'detected' was never mutated; consider changing to 'let' constant
765 | if detected.count > 0 {
766 | if callDetected {
/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:27:9: warning: result of call to 'exec(stmt:)' is unused
25 | newNode.addAttribute(name, value)
26 | if name == "exec" {
27 | exec(stmt: value)
| `- warning: result of call to 'exec(stmt:)' is unused
28 | }
29 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:171:21: warning: value 'nextNode' was defined but never used; consider replacing with boolean test
169 | position.count += 1
170 | }
171 | else if let nextNode = node as? DotNode { // maybe it is a float value
| `- warning: value 'nextNode' was defined but never used; consider replacing with boolean test
172 | if let _ = number {
173 | number!.append(".") // better generator error than runtime error, so ! instead of ? is using
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:233:14: warning: value 'dot' was defined but never used; consider replacing with boolean test
231 |
232 | for i in 0..<asNodes.count {
233 | if let dot = asNodes[i] as? DotNode {
| `- warning: value 'dot' was defined but never used; consider replacing with boolean test
234 | if let receiver = asNodes[i-1] as? ValueNode,
235 | let message = asNodes[i+1] as? ValueNode {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:234:16: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
232 | for i in 0..<asNodes.count {
233 | if let dot = asNodes[i] as? DotNode {
234 | if let receiver = asNodes[i-1] as? ValueNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
235 | let message = asNodes[i+1] as? ValueNode {
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:235:16: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
233 | if let dot = asNodes[i] as? DotNode {
234 | if let receiver = asNodes[i-1] as? ValueNode,
235 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
237 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:238:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
236 | //print ("call \(message.getValue()) on type \(receiver.getValue())")
237 | }
238 | else if let receiver = asNodes[i-1] as? IdentiferNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
239 | let message = asNodes[i+1] as? ValueNode {
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:239:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
237 | }
238 | else if let receiver = asNodes[i-1] as? IdentiferNode,
239 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
241 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:242:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
240 | //print ("call \(message.getValue()) on instance \(receiver.getName())")
241 | }
242 | else if let receiver = asNodes[i-1] as? ClosedRoundBracketNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
243 | let message = asNodes[i+1] as? ValueNode {
244 | //print ("call \(message.getValue()) on result of before")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:243:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
241 | }
242 | else if let receiver = asNodes[i-1] as? ClosedRoundBracketNode,
243 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
244 | //print ("call \(message.getValue()) on result of before")
245 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:246:21: warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
244 | //print ("call \(message.getValue()) on result of before")
245 | }
246 | else if let receiver = asNodes[i-1] as? ClosedSquareBracketNode,
| `- warning: immutable value 'receiver' was never used; consider replacing with '_' or removing it
247 | let message = asNodes[i+1] as? ValueNode {
248 | //print ("call \(message.getValue()) on array element before")
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:247:21: warning: immutable value 'message' was never used; consider replacing with '_' or removing it
245 | }
246 | else if let receiver = asNodes[i-1] as? ClosedSquareBracketNode,
247 | let message = asNodes[i+1] as? ValueNode {
| `- warning: immutable value 'message' was never used; consider replacing with '_' or removing it
248 | //print ("call \(message.getValue()) on array element before")
249 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:259:15: warning: initialization of immutable value 'message' was never used; consider replacing with assignment to '_' or removing it
257 | do {
258 | var messageType : String?
259 | let message = asNodes[i+1]
| `- warning: initialization of immutable value 'message' was never used; consider replacing with assignment to '_' or removing it
260 | for var j in (i+2)..<asNodes.count {
261 | if let _ = asNodes[j] as? SpaceNode {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:267:20: warning: value 'messageType' was defined but never used; consider replacing with boolean test
265 | messageType = "METHOD"
266 | }
267 | if let messageType {
| `- warning: value 'messageType' was defined but never used; consider replacing with boolean test
268 | j = asNodes.count
269 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:271:18: warning: value 'messageType' was defined but never used; consider replacing with boolean test
269 | }
270 | }
271 | if let messageType {} else {
| `- warning: value 'messageType' was defined but never used; consider replacing with boolean test
272 | messageType = "CONSTANT"
273 | }
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:697:18: warning: value 'numeric' was defined but never used; consider replacing with boolean test
695 | break
696 | case ".":
697 | if let numeric = Int (next) // Ziffer / Nummer?
| `- warning: value 'numeric' was defined but never used; consider replacing with boolean test
698 | //&& !numericDetected // aber nicht schon ein Dezimal erkannt => Fehler
699 | {
/host/spi-builder-workspace/Sources/LStXML2Code/PAPTreeEncodingImpl.swift:764:11: warning: variable 'detected' was never mutated; consider changing to 'let' constant
762 | } // END-FOR
763 | // last part of statement
764 | var detected = next.trimmingCharacters(in: .whitespaces)
| `- warning: variable 'detected' was never mutated; consider changing to 'let' constant
765 | if detected.count > 0 {
766 | if callDetected {
/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 AbstractTree.swift
[27/32] Compiling LStXML2Code AbstractTreeEncoder.swift
[28/32] Compiling LStXML2Code AbstractTreeEncoding.swift
BUILD FAILURE 6.0 linux