Build Information
Failed to build SwiftGodot, reference main (150790
), with Swift 6.1 for macOS (SPM) on 1 May 2025 22:00:21 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:12:5: warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | @available(macOS 13.0, iOS 16.0, *)
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
| |- warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxConstantParam' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:14:5: warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
| |- warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEnumMethodMember' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:16:5: warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
| |- warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxTypeName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:18:5: warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
| |- warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEmptyLeading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:20:5: warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
| |- warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxUrl' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | // If the string contains a ".", it will return a pair
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:89:19: warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
87 | }
88 | }
89 | for ed in jsonApi.globalEnums {
| `- warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
90 | for ev in ed.values {
91 | if ev.name == txt {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:66:5: note: let declared here
64 |
65 | let jsonData = try! Data(url: URL(fileURLWithPath: jsonFile))
66 | let jsonApi = try! JSONDecoder().decode(JGodotExtensionAPI.self, from: jsonData)
| `- note: let declared here
67 |
68 | func dropMatchingPrefix(_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:107:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
105 | let (type, name) = splitAtLastDot(str: txt)
106 | if type != "" {
107 | if let ldef = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
108 | if let r = lookInDef(def: ldef, match: name, local: false) {
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:111:34: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
110 | }
111 | } else if let ldef = builtinMap[type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
112 | if let r = lookInDef(def: ldef, match: name, local: false) {
113 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:122:5: note: var declared here
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
123 |
124 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:169:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
167 | var args = ""
168 | if let type {
169 | if let m = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
170 | if let method = findMethod (name: member, on: m) {
171 | args = assembleArgs (method, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:173:31: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
171 | args = assembleArgs (method, method.arguments)
172 | }
173 | } else if let m = builtinMap [type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
174 | if let method = findMethod (name: member, on: m) {
175 | args = assembleArgs(nil, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:122:5: note: var declared here
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
123 |
124 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:23:22: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
10 |
11 | // The name of the form 'bitfield::'
12 | func findEnumDef (name: String) -> JGodotGlobalEnumElement? {
| `- note: add '@MainActor' to make global function 'findEnumDef(name:)' part of global actor 'MainActor'
13 | guard name.starts(with: "bitfield::") else {
14 | return nil
:
21 | }
22 | let type = full [full.startIndex..<split]
23 | guard let cdef = classMap [String (type)] else {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
24 | print ("Could not find class \(type) for \(name)")
25 | return nil
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:139:13: error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
43 | ]
44 |
45 | func generateEnums (_ p: Printer, cdef: JClassInfo?, values: [JGodotGlobalEnumElement], prefix: String?) {
| `- note: add '@MainActor' to make global function 'generateEnums(_:cdef:values:prefix:)' part of global actor 'MainActor'
46 | for enumDef in values {
47 | let isBitField = enumDef.isBitfield ?? false
:
137 | }
138 | if let prefix {
139 | globalEnums [prefix + enumDef.name] = enumDef
| `- error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
140 | }
141 | }
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:88:5: note: mutation of this var is only permitted within the actor
86 | }
87 |
88 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: mutation of this var is only permitted within the actor
89 |
90 | // Maps from a the class name to its definition
[196/206] Compiling Generator MethodGen.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:216:28: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
214 | translation = .direct
215 | } else {
216 | if builtinSizes[src.type] != nil && src.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
217 | translation = .contentRef
218 | } else if classMap[src.type] != nil {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:218:35: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
216 | if builtinSizes[src.type] != nil && src.type != "Object" {
217 | translation = .contentRef
218 | } else if classMap[src.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
219 | if options.contains(.nonOptionalObjects) {
220 | translation = .objectRef(isOptional: false)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:558:42: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
450 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
451 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
452 | func generateMethod(_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, generatedMethodKind: GeneratedMethodKind, asSingleton: Bool) throws -> String? {
| `- note: add '@MainActor' to make global function 'generateMethod(_:method:className:cdef:usedMethods:generatedMethodKind:asSingleton:)' part of global actor 'MainActor'
453 |
454 | let arguments = method.arguments ?? []
:
556 | var signatureArgs: [String] = []
557 | let godotReturnType = method.returnValue?.type
558 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
559 | let returnOptional = godotReturnType == "Variant" || godotReturnTypeIsReferenceType && isReturnOptional(className: className, method: method.name)
560 | let returnType = getGodotType(method.returnValue) + (returnOptional ? "?" : "")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:630:27: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
606 | }
607 |
608 | func getCallResultArgument() -> String {
| `- note: add '@MainActor' to make local function 'getCallResultArgument()' part of global actor 'MainActor'
609 | let ptrResult: String
610 | if returnType != "" {
:
628 | } else if frameworkType {
629 | ptrResult = "&_result"
630 | } else if builtinSizes [godotReturnType] != nil {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
631 | ptrResult = "&_result.content"
632 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:698:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
450 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
451 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
452 | func generateMethod(_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, generatedMethodKind: GeneratedMethodKind, asSingleton: Bool) throws -> String? {
| `- note: add '@MainActor' to make global function 'generateMethod(_:method:className:cdef:usedMethods:generatedMethodKind:asSingleton:)' part of global actor 'MainActor'
453 |
454 | let arguments = method.arguments ?? []
:
696 | isOptional = true
697 | } else {
698 | if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
699 | isOptional = isMethodArgumentOptional(className: className, method: method.name, arg: arg.name)
700 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
[197/206] Compiling Generator NativeStructures.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:216:28: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
214 | translation = .direct
215 | } else {
216 | if builtinSizes[src.type] != nil && src.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
217 | translation = .contentRef
218 | } else if classMap[src.type] != nil {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:218:35: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
216 | if builtinSizes[src.type] != nil && src.type != "Object" {
217 | translation = .contentRef
218 | } else if classMap[src.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
219 | if options.contains(.nonOptionalObjects) {
220 | translation = .objectRef(isOptional: false)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:558:42: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
450 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
451 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
452 | func generateMethod(_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, generatedMethodKind: GeneratedMethodKind, asSingleton: Bool) throws -> String? {
| `- note: add '@MainActor' to make global function 'generateMethod(_:method:className:cdef:usedMethods:generatedMethodKind:asSingleton:)' part of global actor 'MainActor'
453 |
454 | let arguments = method.arguments ?? []
:
556 | var signatureArgs: [String] = []
557 | let godotReturnType = method.returnValue?.type
558 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
559 | let returnOptional = godotReturnType == "Variant" || godotReturnTypeIsReferenceType && isReturnOptional(className: className, method: method.name)
560 | let returnType = getGodotType(method.returnValue) + (returnOptional ? "?" : "")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:630:27: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
606 | }
607 |
608 | func getCallResultArgument() -> String {
| `- note: add '@MainActor' to make local function 'getCallResultArgument()' part of global actor 'MainActor'
609 | let ptrResult: String
610 | if returnType != "" {
:
628 | } else if frameworkType {
629 | ptrResult = "&_result"
630 | } else if builtinSizes [godotReturnType] != nil {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
631 | ptrResult = "&_result.content"
632 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:698:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
450 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
451 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
452 | func generateMethod(_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, generatedMethodKind: GeneratedMethodKind, asSingleton: Bool) throws -> String? {
| `- note: add '@MainActor' to make global function 'generateMethod(_:method:className:cdef:usedMethods:generatedMethodKind:asSingleton:)' part of global actor 'MainActor'
453 |
454 | let arguments = method.arguments ?? []
:
696 | isOptional = true
697 | } else {
698 | if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
699 | isOptional = isMethodArgumentOptional(className: className, method: method.name, arg: arg.name)
700 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
[198/206] Compiling Generator ClassGen.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:462:5: warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
460 | var skipList = Set<String>()
461 | #else
462 | var okList = Set<String>()
| |- warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'okList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'okList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | var skipList = Set<String>()
464 | #endif
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:463:5: warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
461 | #else
462 | var okList = Set<String>()
463 | var skipList = Set<String>()
| |- warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'skipList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'skipList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
464 | #endif
465 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:30:12: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
9 | import ExtensionApi
10 |
11 | func makeDefaultInit (godotType: String, initCollection: String = "") -> String {
| `- note: add '@MainActor' to make global function 'makeDefaultInit(godotType:initCollection:)' part of global actor 'MainActor'
12 | switch godotType {
13 | case "Variant":
:
28 | let nestedTypeName = String (t.dropFirst(12))
29 | let simple = SimpleType(type: nestedTypeName)
30 | if classMap [nestedTypeName] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
31 | return "TypedArray<\(getGodotType (simple))?>(\(initCollection))"
32 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:84:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
69 | }
70 |
71 | func generateVirtualProxy (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateVirtualProxy(_:cdef:methodName:method:)' part of global actor 'MainActor'
72 | cdef: JGodotExtensionAPIClass,
73 | methodName: String,
:
82 | if let ret = method.returnValue {
83 | let godotReturnType = ret.type
84 | let godotReturnTypeIsReferenceType = classMap [godotReturnType] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
85 | returnOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: methodName)
86 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:113:23: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
111 | if arg.type == "String" {
112 | argCall += "GString.stringFromGStringPtr (ptr: args [\(i)]!) ?? \"\""
113 | } else if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
114 | //
115 | // This idiom guarantees that: if this is a known object, we surface this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:163:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
161 | derefField = "array.content"
162 | derefType = "type (of: ret.array.content)"
163 | } else if classMap [ret.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
164 | derefField = "handle"
165 | derefType = " GodotNativeObjectPointer?.self"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:175:30: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
173 | target = "array.content"
174 | } else {
175 | target = classMap [ret.type] != nil ? "handle" : "content"
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
176 | }
177 | p ("retPtr!.storeBytes (of: ret\(returnOptional ? "?" : "").\(derefField), as: \(derefType)) // \(ret.type)")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:327:20: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
316 | p ("\n/* Properties */\n")
317 |
318 | func findMethod (forProperty: JGodotProperty, startAt: JGodotExtensionAPIClass, name: String, resolvedName: inout String, argName: inout String) -> JGodotClassMethod? {
| `- note: add '@MainActor' to make local function 'findMethod(forProperty:startAt:name:resolvedName:argName:)' part of global actor 'MainActor'
319 | if let here = methods.first(where: { $0.name == name}) {
320 | return here
:
325 | return nil
326 | }
327 | cdef = classMap [parentName]
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
328 | guard let cdef else {
329 | print ("Warning: Missing type \(parentName)")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:409:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
307 | }
308 | }
309 | func generateProperties (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateProperties(_:cdef:_:_:_:asSingleton:)' part of global actor 'MainActor'
310 | cdef: JGodotExtensionAPIClass,
311 | _ properties: [JGodotProperty],
:
407 | }
408 | let godotReturnType = method.returnValue?.type
409 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
410 |
411 | let propertyOptional = godotReturnType == "Variant" || godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: property.getter)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:556:23: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
554 | func processClass (cdef: JGodotExtensionAPIClass, outputDir: String?) async {
555 | // Determine if it is a singleton, but exclude EditorInterface
556 | let isSingleton = jsonApi.singletons.contains (where: { $0.name == cdef.name })
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
557 | let asSingleton = isSingleton && cdef.name != "EditorInterface"
558 |
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
7 |
8 | import Foundation
9 | import ExtensionApi
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
10 |
11 | func makeDefaultInit (godotType: String, initCollection: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:560:41: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
558 |
559 | // Clear the result
560 | let p = await PrinterFactory.shared.initPrinter(cdef.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
561 |
562 | // Save it
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:556:23: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
554 | func processClass (cdef: JGodotExtensionAPIClass, outputDir: String?) async {
555 | // Determine if it is a singleton, but exclude EditorInterface
556 | let isSingleton = jsonApi.singletons.contains (where: { $0.name == cdef.name })
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
557 | let asSingleton = isSingleton && cdef.name != "EditorInterface"
558 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:746:18: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
742 |
743 | extension Generator {
744 | func generateCtorPointers (_ p: Printer) {
| `- note: add '@MainActor' to make instance method 'generateCtorPointers' part of global actor 'MainActor'
745 | p ("var godotFrameworkCtors = [")
746 | for x in classMap.keys.sorted() {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
747 | p (" \"\(x)\": \(x).self, //(nativeHandle:),")
748 | }
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
[199/206] Compiling Generator Data.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:462:5: warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
460 | var skipList = Set<String>()
461 | #else
462 | var okList = Set<String>()
| |- warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'okList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'okList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | var skipList = Set<String>()
464 | #endif
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:463:5: warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
461 | #else
462 | var okList = Set<String>()
463 | var skipList = Set<String>()
| |- warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'skipList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'skipList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
464 | #endif
465 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:30:12: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
9 | import ExtensionApi
10 |
11 | func makeDefaultInit (godotType: String, initCollection: String = "") -> String {
| `- note: add '@MainActor' to make global function 'makeDefaultInit(godotType:initCollection:)' part of global actor 'MainActor'
12 | switch godotType {
13 | case "Variant":
:
28 | let nestedTypeName = String (t.dropFirst(12))
29 | let simple = SimpleType(type: nestedTypeName)
30 | if classMap [nestedTypeName] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
31 | return "TypedArray<\(getGodotType (simple))?>(\(initCollection))"
32 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:84:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
69 | }
70 |
71 | func generateVirtualProxy (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateVirtualProxy(_:cdef:methodName:method:)' part of global actor 'MainActor'
72 | cdef: JGodotExtensionAPIClass,
73 | methodName: String,
:
82 | if let ret = method.returnValue {
83 | let godotReturnType = ret.type
84 | let godotReturnTypeIsReferenceType = classMap [godotReturnType] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
85 | returnOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: methodName)
86 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:113:23: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
111 | if arg.type == "String" {
112 | argCall += "GString.stringFromGStringPtr (ptr: args [\(i)]!) ?? \"\""
113 | } else if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
114 | //
115 | // This idiom guarantees that: if this is a known object, we surface this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:163:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
161 | derefField = "array.content"
162 | derefType = "type (of: ret.array.content)"
163 | } else if classMap [ret.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
164 | derefField = "handle"
165 | derefType = " GodotNativeObjectPointer?.self"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:175:30: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
173 | target = "array.content"
174 | } else {
175 | target = classMap [ret.type] != nil ? "handle" : "content"
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
176 | }
177 | p ("retPtr!.storeBytes (of: ret\(returnOptional ? "?" : "").\(derefField), as: \(derefType)) // \(ret.type)")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:327:20: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
316 | p ("\n/* Properties */\n")
317 |
318 | func findMethod (forProperty: JGodotProperty, startAt: JGodotExtensionAPIClass, name: String, resolvedName: inout String, argName: inout String) -> JGodotClassMethod? {
| `- note: add '@MainActor' to make local function 'findMethod(forProperty:startAt:name:resolvedName:argName:)' part of global actor 'MainActor'
319 | if let here = methods.first(where: { $0.name == name}) {
320 | return here
:
325 | return nil
326 | }
327 | cdef = classMap [parentName]
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
328 | guard let cdef else {
329 | print ("Warning: Missing type \(parentName)")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:409:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
307 | }
308 | }
309 | func generateProperties (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateProperties(_:cdef:_:_:_:asSingleton:)' part of global actor 'MainActor'
310 | cdef: JGodotExtensionAPIClass,
311 | _ properties: [JGodotProperty],
:
407 | }
408 | let godotReturnType = method.returnValue?.type
409 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
410 |
411 | let propertyOptional = godotReturnType == "Variant" || godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: property.getter)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:556:23: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
554 | func processClass (cdef: JGodotExtensionAPIClass, outputDir: String?) async {
555 | // Determine if it is a singleton, but exclude EditorInterface
556 | let isSingleton = jsonApi.singletons.contains (where: { $0.name == cdef.name })
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
557 | let asSingleton = isSingleton && cdef.name != "EditorInterface"
558 |
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
7 |
8 | import Foundation
9 | import ExtensionApi
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
10 |
11 | func makeDefaultInit (godotType: String, initCollection: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:560:41: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
558 |
559 | // Clear the result
560 | let p = await PrinterFactory.shared.initPrinter(cdef.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
561 |
562 | // Save it
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:556:23: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
554 | func processClass (cdef: JGodotExtensionAPIClass, outputDir: String?) async {
555 | // Determine if it is a singleton, but exclude EditorInterface
556 | let isSingleton = jsonApi.singletons.contains (where: { $0.name == cdef.name })
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
557 | let asSingleton = isSingleton && cdef.name != "EditorInterface"
558 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:746:18: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
742 |
743 | extension Generator {
744 | func generateCtorPointers (_ p: Printer) {
| `- note: add '@MainActor' to make instance method 'generateCtorPointers' part of global actor 'MainActor'
745 | p ("var godotFrameworkCtors = [")
746 | for x in classMap.keys.sorted() {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
747 | p (" \"\(x)\": \(x).self, //(nativeHandle:),")
748 | }
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
[200/206] Compiling Generator main.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:120:41: error: main actor-isolated var 'structTypes' can not be referenced from a nonisolated context
104 | }
105 |
106 | private var structTypes: Set<String> = [
| `- note: var declared here
107 | "const void*",
108 | "AudioFrame*",
:
118 | /// - parameter type: A type name as found in `extension_api.json`.
119 | /// - returns: True if the type is represented in Swift as simple `struct` with fields (or as a built-in Swift type), not wrapping a handle (pointer) to a native Godot object.
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
| | `- error: main actor-isolated var 'structTypes' can not be referenced from a nonisolated context
| `- note: add '@MainActor' to make global function 'isStruct' part of global actor 'MainActor'
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:170:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
168 | struct Generator {
169 | func run() async throws {
170 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:172:58: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
170 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
1 | import ExtensionApi
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
2 | // main.swift
3 | // SwiftGodot/Generator
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:173:46: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
175 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:174:39: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
175 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
176 |
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:175:39: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
175 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
176 |
177 | generateVariantGodotInterface(coreDefPrinter)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:179:58: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
177 | generateVariantGodotInterface(coreDefPrinter)
178 | generateCtorPointers(coreDefPrinter)
179 | generateNativeStructures(coreDefPrinter, values: jsonApi.nativeStructures)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
180 |
181 | if let generatedBuiltinDir {
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:172:9: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
170 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
| | `- note: property access is 'async'
| `- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:179:9: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
177 | generateVariantGodotInterface(coreDefPrinter)
178 | generateCtorPointers(coreDefPrinter)
179 | generateNativeStructures(coreDefPrinter, values: jsonApi.nativeStructures)
| | `- note: property access is 'async'
| `- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
180 |
181 | if let generatedBuiltinDir {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:185:12: error: expression is 'async' but is not marked with 'await'
183 | }
184 |
185 | if combineOutput {
| |- error: expression is 'async' but is not marked with 'await'
| `- note: property access is 'async'
186 | await PrinterFactory.shared.saveMultiplexed(outputDir)
187 | }
[201/206] Emitting module Generator
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:462:5: warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
460 | var skipList = Set<String>()
461 | #else
462 | var okList = Set<String>()
| |- warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'okList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'okList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | var skipList = Set<String>()
464 | #endif
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:463:5: warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
461 | #else
462 | var okList = Set<String>()
463 | var skipList = Set<String>()
| |- warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'skipList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'skipList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
464 | #endif
465 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:12:5: warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | @available(macOS 13.0, iOS 16.0, *)
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
| |- warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxConstantParam' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:14:5: warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
| |- warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEnumMethodMember' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:16:5: warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
| |- warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxTypeName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:18:5: warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
| |- warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEmptyLeading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:20:5: warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
| |- warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxUrl' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | // If the string contains a ".", it will return a pair
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:98:5: warning: var 'core_types' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
96 | }
97 |
98 | var core_types = [
| |- warning: var 'core_types' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'core_types' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'core_types' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 | "String",
100 | "Vector2",
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:243:5: warning: var 'mapStringToSwift' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
241 | }
242 |
243 | var mapStringToSwift = true
| |- warning: var 'mapStringToSwift' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'mapStringToSwift' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'mapStringToSwift' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |
245 | /// Given a type definition with its metadata, and the context where the type is being
[202/206] Compiling Generator Arguments.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Arguments.swift:201:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
189 | }
190 |
191 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
192 | var argref: String
193 | var optstorage: String
:
199 | optstorage = ".content"
200 | } else {
201 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
202 | optstorage = ".content"
203 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:832:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
830 | storedMembers = bc.members
831 | } else {
832 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
833 | storedMembers = memberOffsets.compactMap({ m in
834 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:140:5: note: var declared here
138 | }
139 | }
140 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
141 | for mo in jsonApi.builtinClassMemberOffsets {
142 | if mo.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:1172:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1170 | default:
1171 | // printer for class itself
1172 | let p: Printer = await PrinterFactory.shared.initPrinter(bc.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1173 |
1174 | mapStringToSwift = bc.name != "String"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
[203/206] Compiling Generator BuiltinGen.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Arguments.swift:201:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
189 | }
190 |
191 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
192 | var argref: String
193 | var optstorage: String
:
199 | optstorage = ".content"
200 | } else {
201 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
202 | optstorage = ".content"
203 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:832:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
830 | storedMembers = bc.members
831 | } else {
832 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
833 | storedMembers = memberOffsets.compactMap({ m in
834 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:140:5: note: var declared here
138 | }
139 | }
140 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
141 | for mo in jsonApi.builtinClassMemberOffsets {
142 | if mo.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:1172:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1170 | default:
1171 | // printer for class itself
1172 | let p: Printer = await PrinterFactory.shared.initPrinter(bc.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1173 |
1174 | mapStringToSwift = bc.name != "String"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
[206/213] Write EntryPointGenerator-tool-entitlement.plist
[207/214] Write sources
[210/214] Write swift-version-2F0A5646E1D333AE.txt
[212/216] Emitting module ArgumentParserToolInfo
[213/216] Compiling ArgumentParserToolInfo ToolInfo.swift
[214/255] Compiling ArgumentParser NameSpecification.swift
[215/255] Compiling ArgumentParser Option.swift
[216/255] Compiling ArgumentParser OptionGroup.swift
[217/255] Compiling ArgumentParser AsyncParsableCommand.swift
[218/255] Emitting module ArgumentParser
[219/259] Compiling ArgumentParser BashCompletionsGenerator.swift
[220/259] Compiling ArgumentParser CompletionsGenerator.swift
[221/259] Compiling ArgumentParser FishCompletionsGenerator.swift
[222/259] Compiling ArgumentParser ZshCompletionsGenerator.swift
[223/259] Compiling ArgumentParser Argument.swift
[224/259] Compiling ArgumentParser CommandConfiguration.swift
[225/259] Compiling ArgumentParser CommandGroup.swift
[226/259] Compiling ArgumentParser EnumerableFlag.swift
[227/259] Compiling ArgumentParser ExpressibleByArgument.swift
[228/259] Compiling ArgumentParser ParserError.swift
[229/259] Compiling ArgumentParser SplitArguments.swift
[230/259] Compiling ArgumentParser DumpHelpGenerator.swift
[231/259] Compiling ArgumentParser HelpCommand.swift
[232/259] Compiling ArgumentParser ParsableArguments.swift
[233/259] Compiling ArgumentParser ParsableArgumentsValidation.swift
[234/259] Compiling ArgumentParser ParsableCommand.swift
[235/259] Compiling ArgumentParser ArgumentDecoder.swift
[236/259] Compiling ArgumentParser ArgumentHelp.swift
[237/259] Compiling ArgumentParser ArgumentVisibility.swift
[238/259] Compiling ArgumentParser CompletionKind.swift
[239/259] Compiling ArgumentParser Errors.swift
[240/259] Compiling ArgumentParser Flag.swift
[241/259] Compiling ArgumentParser HelpGenerator.swift
[242/259] Compiling ArgumentParser MessageInfo.swift
[243/259] Compiling ArgumentParser UsageGenerator.swift
[244/259] Compiling ArgumentParser CollectionExtensions.swift
[245/259] Compiling ArgumentParser InputOrigin.swift
[246/259] Compiling ArgumentParser Name.swift
[247/259] Compiling ArgumentParser Parsed.swift
[248/259] Compiling ArgumentParser ParsedValues.swift
[249/259] Compiling ArgumentParser Platform.swift
[250/259] Compiling ArgumentParser SequenceExtensions.swift
[251/259] Compiling ArgumentParser StringExtensions.swift
[252/259] Compiling ArgumentParser Tree.swift
[253/259] Compiling ArgumentParser ArgumentDefinition.swift
[254/259] Compiling ArgumentParser ArgumentSet.swift
[255/259] Compiling ArgumentParser CommandParser.swift
[256/259] Compiling ArgumentParser InputKey.swift
[257/262] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[258/262] Emitting module EntryPointGenerator
[259/262] Compiling EntryPointGenerator EntryPointGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:25:23: error: type of expression is ambiguous without a type annotation
23 |
24 | mutating func run() throws {
25 | let visitor = GodotMacroSearchingVisitor(viewMode: .all, logger: verbose ? logVerbose : nil)
| `- error: type of expression is ambiguous without a type annotation
26 |
27 | logVerbose("Scanning source files...")
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:52:70: error: cannot infer contextual base in reference to member 'utf8'
50 | logVerbose("Writing \(count) to '\(outputFile)'...")
51 | let outputURL = URL(fileURLWithPath: outputFile)
52 | try source.write(to: outputURL, atomically: true, encoding: .utf8)
| `- error: cannot infer contextual base in reference to member 'utf8'
53 | log("Generated swift_entry_point, registering \(count) classes, in \(outputURL.lastPathComponent).")
54 | }
[1/1] Compiling plugin EntryPointGeneratorPlugin
[2/2] Compiling plugin CodeGeneratorPlugin
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
[5/5] Compiling plugin GenerateManual
Building for debugging...
[5/82] Write Generator-tool-entitlement.plist
[5/82] Write Generator-entitlement.plist
[5/82] Write sources
[6/82] Write EntryPointGenerator-tool-entitlement.plist
[10/82] Write sources
[11/82] Write EntryPointGenerator-entitlement.plist
[12/82] Copying libgodot.dylib
[12/82] Write sources
[27/82] Copying extension_api.json
[27/82] Write sources
[31/82] Copying extension_api.json
[34/82] Write sources
[51/82] Compiling _SwiftSyntaxCShims dummy.c
[53/82] Write swift-version-2F0A5646E1D333AE.txt
[54/82] Compiling GDExtension GDExtensionSupport.c
[57/97] Emitting module SwiftSyntax600
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[58/97] Compiling SwiftSyntax600 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[59/97] Emitting module SwiftSyntax509
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[60/97] Compiling SwiftSyntax509 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[61/97] Emitting module SwiftSyntax510
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[62/97] Compiling SwiftSyntax510 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[63/164] Compiling ExtensionApiJson ExtensionApiJson.swift
[64/164] Compiling ExtensionApiJson resource_bundle_accessor.swift
[65/164] Emitting module ExtensionApiJson
[66/164] Compiling ExtensionApiJson ExtensionApiJson.swift
[67/164] Emitting module ExtensionApiJson
[68/164] Compiling ExtensionApiJson resource_bundle_accessor.swift
[69/164] Emitting module ExtensionApi
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:567:7: warning: non-final class 'JSONCodingKey' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
565 | }
566 |
567 | class JSONCodingKey: CodingKey {
| `- warning: non-final class 'JSONCodingKey' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
568 | let key: String
569 |
[70/164] Emitting module ArgumentParserToolInfo
[71/164] Compiling ArgumentParserToolInfo ToolInfo.swift
[72/215] Compiling ArgumentParser CommandConfiguration.swift
[73/215] Compiling ArgumentParser CommandGroup.swift
[74/215] Compiling ArgumentParser EnumerableFlag.swift
[75/215] Compiling ArgumentParser ExpressibleByArgument.swift
[76/219] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[77/219] Compiling SwiftSyntax SyntaxChildren.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[78/219] Compiling SwiftSyntax SyntaxCollection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[79/219] Compiling SwiftSyntax SyntaxHashable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[80/219] Compiling SwiftSyntax SyntaxIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[81/219] Compiling SwiftSyntax SyntaxNodeFactory.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[82/219] Compiling SwiftSyntax SyntaxNodeStructure.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[83/226] Compiling EntryPointGenerator EntryPointGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:25:23: error: type of expression is ambiguous without a type annotation
23 |
24 | mutating func run() throws {
25 | let visitor = GodotMacroSearchingVisitor(viewMode: .all, logger: verbose ? logVerbose : nil)
| `- error: type of expression is ambiguous without a type annotation
26 |
27 | logVerbose("Scanning source files...")
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:52:70: error: cannot infer contextual base in reference to member 'utf8'
50 | logVerbose("Writing \(count) to '\(outputFile)'...")
51 | let outputURL = URL(fileURLWithPath: outputFile)
52 | try source.write(to: outputURL, atomically: true, encoding: .utf8)
| `- error: cannot infer contextual base in reference to member 'utf8'
53 | log("Generated swift_entry_point, registering \(count) classes, in \(outputURL.lastPathComponent).")
54 | }
[84/226] Emitting module EntryPointGenerator
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[85/226] Compiling ArgumentParser InputOrigin.swift
[86/226] Compiling ArgumentParser Name.swift
[87/226] Compiling ArgumentParser Parsed.swift
[88/226] Compiling ArgumentParser ParsedValues.swift
[89/226] Compiling ExtensionApi ApiJsonModel+Extra.swift
[90/226] Emitting module SwiftOperators
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[91/226] Compiling SwiftOperators OperatorTable+Semantics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[92/226] Compiling SwiftOperators PrecedenceGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[93/226] Compiling SwiftOperators OperatorTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[94/226] Compiling SwiftOperators OperatorError+Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[95/226] Compiling SwiftOperators PrecedenceGraph.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[96/226] Compiling SwiftOperators OperatorTable+Defaults.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[97/226] Compiling SwiftOperators Operator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[98/226] Compiling SwiftOperators OperatorError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Found unhandled resource at /Users/admin/builder/spi-builder-workspace/Tests/SwiftGodotMacrosTests/Resources
[0/5] Compiling _SwiftSyntaxCShims dummy.c
[1/5] Write swift-version-2F0A5646E1D333AE.txt
[3/14] Compiling SwiftSyntax509 Empty.swift
[4/14] Compiling SwiftSyntax600 Empty.swift
[5/14] Emitting module SwiftSyntax600
[6/14] Compiling SwiftSyntax510 Empty.swift
[7/14] Emitting module SwiftSyntax510
[8/14] Emitting module SwiftSyntax509
[9/79] Compiling ExtensionApi ApiJsonModel+Extra.swift
[10/79] Emitting module ExtensionApi
[11/79] Compiling ExtensionApi ApiJsonModel.swift
[12/79] Compiling SwiftSyntax AbsolutePosition.swift
[13/79] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[14/79] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[15/79] Compiling SwiftSyntax Assert.swift
[16/79] Compiling SwiftSyntax BumpPtrAllocator.swift
[17/79] Compiling SwiftSyntax CommonAncestor.swift
[18/79] Compiling SwiftSyntax Convenience.swift
[19/79] Compiling SwiftSyntax CustomTraits.swift
[20/86] Compiling SwiftSyntax SourceEdit.swift
[21/86] Compiling SwiftSyntax SourceLength.swift
[22/86] Compiling SwiftSyntax SourceLocation.swift
[23/86] Compiling SwiftSyntax SourcePresence.swift
[24/86] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[25/86] Compiling SwiftSyntax Syntax.swift
[26/86] Compiling SwiftSyntax SyntaxArena.swift
[27/86] Compiling SwiftSyntax Identifier.swift
[28/86] Compiling SwiftSyntax MemoryLayout.swift
[29/86] Compiling SwiftSyntax MissingNodeInitializers.swift
[30/86] Compiling SwiftSyntax RawSyntax.swift
[31/86] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[32/86] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[33/86] Compiling SwiftSyntax RawSyntaxTokenView.swift
[34/86] Compiling SwiftSyntax Tokens.swift
[35/86] Compiling SwiftSyntax TriviaPieces.swift
[36/86] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[37/86] Compiling SwiftSyntax RawSyntaxNodesC.swift
[38/86] Compiling SwiftSyntax RawSyntaxNodesD.swift
[39/86] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[40/86] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[41/86] Emitting module SwiftSyntax
[42/86] Compiling SwiftSyntax SyntaxCollections.swift
[43/86] Compiling SwiftSyntax SyntaxEnum.swift
[44/86] Compiling SwiftSyntax SyntaxKind.swift
[45/86] Compiling SwiftSyntax SyntaxRewriter.swift
[46/86] Compiling SwiftSyntax SyntaxTraits.swift
[47/86] Compiling SwiftSyntax SyntaxVisitor.swift
[48/86] Compiling SwiftSyntax TokenKind.swift
[49/86] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[50/86] Compiling SwiftSyntax SyntaxChildren.swift
[51/86] Compiling SwiftSyntax SyntaxCollection.swift
[52/86] Compiling SwiftSyntax SyntaxHashable.swift
[53/86] Compiling SwiftSyntax SyntaxIdentifier.swift
[54/86] Compiling SwiftSyntax SyntaxNodeFactory.swift
[55/86] Compiling SwiftSyntax SyntaxNodeStructure.swift
[56/86] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[57/86] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[58/86] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[59/86] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[60/86] Compiling SwiftSyntax RawSyntaxValidation.swift
[61/86] Compiling SwiftSyntax SyntaxNodesAB.swift
[62/86] Compiling SwiftSyntax SyntaxNodesC.swift
[63/86] Compiling SwiftSyntax SyntaxNodesD.swift
[64/86] Compiling SwiftSyntax SyntaxNodesEF.swift
[65/86] Compiling SwiftSyntax SyntaxNodesGHI.swift
[66/86] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[67/86] Compiling SwiftSyntax SyntaxNodesOP.swift
[68/86] Compiling SwiftSyntax SyntaxNodesQRS.swift
[69/86] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[70/86] Compiling SwiftSyntax SyntaxProtocol.swift
[71/86] Compiling SwiftSyntax SyntaxText.swift
[72/86] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[73/86] Compiling SwiftSyntax TokenDiagnostic.swift
[74/86] Compiling SwiftSyntax TokenSequence.swift
[75/86] Compiling SwiftSyntax TokenSyntax.swift
[76/86] Compiling SwiftSyntax Trivia.swift
[77/86] Compiling SwiftSyntax Utils.swift
[78/86] Compiling SwiftSyntax ChildNameForKeyPath.swift
[79/86] Compiling SwiftSyntax Keyword.swift
[80/86] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[81/86] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[82/86] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[83/86] Compiling SwiftSyntax SyntaxBaseNodes.swift
[84/144] Compiling SwiftDiagnostics FixIt.swift
[85/144] Compiling SwiftDiagnostics Message.swift
[86/145] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[87/145] Compiling SwiftDiagnostics Note.swift
[88/145] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[89/145] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[90/145] Compiling SwiftDiagnostics Diagnostic.swift
[91/145] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[92/145] Compiling SwiftDiagnostics Convenience.swift
[93/145] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[94/145] Emitting module SwiftDiagnostics
[95/145] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[96/145] Compiling SwiftBasicFormat Syntax+Extensions.swift
[97/145] Compiling SwiftBasicFormat InferIndentation.swift
[98/145] Emitting module SwiftBasicFormat
[99/145] Compiling SwiftBasicFormat BasicFormat.swift
[100/145] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[101/145] Compiling SwiftParser UnicodeScalarExtensions.swift
[102/145] Compiling SwiftParser Lookahead.swift
[103/145] Compiling SwiftParser LoopProgressCondition.swift
[104/145] Compiling SwiftParser Modifiers.swift
[105/145] Compiling SwiftParser Names.swift
[106/149] Emitting module SwiftParser
[107/149] Compiling SwiftParser TopLevel.swift
[108/149] Compiling SwiftParser TriviaParser.swift
[109/149] Compiling SwiftParser Types.swift
[110/149] Compiling SwiftParser ExperimentalFeatures.swift
[111/149] Compiling SwiftParser Directives.swift
[112/149] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[113/149] Compiling SwiftParser Expressions.swift
[114/149] Compiling SwiftParser IncrementalParseTransition.swift
[115/149] Compiling SwiftParser IsValidIdentifier.swift
[116/149] Compiling SwiftParser StringLiterals.swift
[117/149] Compiling SwiftParser SwiftParserCompatibility.swift
[118/149] Compiling SwiftParser SwiftVersion.swift
[119/149] Compiling SwiftParser SyntaxUtils.swift
[120/149] Compiling SwiftParser TokenConsumer.swift
[121/149] Compiling SwiftParser TokenPrecedence.swift
[122/149] Compiling SwiftParser TokenSpec.swift
[123/149] Compiling SwiftParser TokenSpecSet.swift
[124/149] Compiling SwiftParser Recovery.swift
[125/149] Compiling SwiftParser Specifiers.swift
[126/149] Compiling SwiftParser Statements.swift
[127/149] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[128/149] Compiling SwiftParser Cursor.swift
[129/149] Compiling SwiftParser Lexeme.swift
[130/149] Compiling SwiftParser LexemeSequence.swift
[131/149] Compiling SwiftParser Lexer.swift
[132/149] Compiling SwiftParser RegexLiteralLexer.swift
[133/149] Compiling SwiftParser Attributes.swift
[134/149] Compiling SwiftParser Availability.swift
[135/149] Compiling SwiftParser CharacterInfo.swift
[136/149] Compiling SwiftParser CollectionNodes+Parsable.swift
[137/149] Compiling SwiftParser Declarations.swift
[138/149] Compiling SwiftParser Nominals.swift
[139/149] Compiling SwiftParser Parameters.swift
[140/149] Compiling SwiftParser ParseSourceFile.swift
[141/149] Compiling SwiftParser Parser.swift
[142/149] Compiling SwiftParser Patterns.swift
[143/149] Compiling SwiftParser IsLexerClassified.swift
[144/149] Compiling SwiftParser LayoutNodes+Parsable.swift
[145/149] Compiling SwiftParser Parser+TokenSpecSet.swift
[146/149] Compiling SwiftParser TokenSpecStaticMembers.swift
[147/162] Compiling SwiftParserDiagnostics Utils.swift
[148/162] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[149/162] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[150/163] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[151/163] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[152/163] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[153/163] Compiling SwiftParserDiagnostics PresenceUtils.swift
[154/163] Compiling SwiftParserDiagnostics MissingNodesError.swift
[155/163] Compiling SwiftParserDiagnostics MissingTokenError.swift
[156/163] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[157/163] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[158/163] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[159/163] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[160/163] Emitting module SwiftParserDiagnostics
[161/178] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[162/178] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[163/178] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[164/178] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[165/178] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[166/178] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[167/178] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[168/178] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[169/179] Compiling SwiftSyntaxBuilder Indenter.swift
[170/179] Compiling SwiftSyntaxBuilder ListBuilder.swift
[171/179] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[172/179] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[173/179] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[174/179] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[175/179] Emitting module SwiftSyntaxBuilder
[176/179] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[177/193] Compiling Generator UnsafePointerHelpers.swift
[178/193] Compiling Generator UtilityGen.swift
[179/193] Compiling Generator TypeHelpers.swift
[180/193] Compiling Generator StringOperations.swift
[181/194] Compiling Generator Printer.swift
[182/194] Compiling Generator DocModel.swift
[183/194] Compiling Generator Enums.swift
[184/194] Compiling Generator MethodGen.swift
[185/194] Compiling Generator NativeStructures.swift
[186/194] Compiling Generator main.swift
[187/194] Compiling Generator ClassGen.swift
[188/194] Compiling Generator Data.swift
[189/194] Emitting module Generator
[190/194] Compiling Generator Arguments.swift
[191/194] Compiling Generator BuiltinGen.swift
[191/194] Write Objects.LinkFileList
[192/194] Linking Generator-tool
[193/194] Applying Generator-tool
[194/198] Write swift-version-2F0A5646E1D333AE.txt
[196/200] Emitting module ArgumentParserToolInfo
[197/200] Compiling ArgumentParserToolInfo ToolInfo.swift
[198/239] Compiling ArgumentParser NameSpecification.swift
[199/239] Compiling ArgumentParser Option.swift
[200/239] Compiling ArgumentParser OptionGroup.swift
[201/239] Compiling ArgumentParser AsyncParsableCommand.swift
[202/243] Emitting module ArgumentParser
[203/243] Compiling ArgumentParser ParsableArguments.swift
[204/243] Compiling ArgumentParser ParsableArgumentsValidation.swift
[205/243] Compiling ArgumentParser ParsableCommand.swift
[206/243] Compiling ArgumentParser ArgumentDecoder.swift
[207/243] Compiling ArgumentParser BashCompletionsGenerator.swift
[208/243] Compiling ArgumentParser CompletionsGenerator.swift
[209/243] Compiling ArgumentParser FishCompletionsGenerator.swift
[210/243] Compiling ArgumentParser ZshCompletionsGenerator.swift
[211/243] Compiling ArgumentParser Argument.swift
[212/243] Compiling ArgumentParser HelpGenerator.swift
[213/243] Compiling ArgumentParser MessageInfo.swift
[214/243] Compiling ArgumentParser UsageGenerator.swift
[215/243] Compiling ArgumentParser CollectionExtensions.swift
[216/243] Compiling ArgumentParser Platform.swift
[217/243] Compiling ArgumentParser SequenceExtensions.swift
[218/243] Compiling ArgumentParser StringExtensions.swift
[219/243] Compiling ArgumentParser Tree.swift
[220/243] Compiling ArgumentParser InputOrigin.swift
[221/243] Compiling ArgumentParser Name.swift
[222/243] Compiling ArgumentParser Parsed.swift
[223/243] Compiling ArgumentParser ParsedValues.swift
[224/243] Compiling ArgumentParser CommandConfiguration.swift
[225/243] Compiling ArgumentParser CommandGroup.swift
[226/243] Compiling ArgumentParser EnumerableFlag.swift
[227/243] Compiling ArgumentParser ExpressibleByArgument.swift
[228/243] Compiling ArgumentParser ArgumentDefinition.swift
[229/243] Compiling ArgumentParser ArgumentSet.swift
[230/243] Compiling ArgumentParser CommandParser.swift
[231/243] Compiling ArgumentParser InputKey.swift
[232/243] Compiling ArgumentParser ArgumentHelp.swift
[233/243] Compiling ArgumentParser ArgumentVisibility.swift
[234/243] Compiling ArgumentParser CompletionKind.swift
[235/243] Compiling ArgumentParser Errors.swift
[236/243] Compiling ArgumentParser Flag.swift
[237/243] Compiling ArgumentParser ParserError.swift
[238/243] Compiling ArgumentParser SplitArguments.swift
[239/243] Compiling ArgumentParser DumpHelpGenerator.swift
[240/243] Compiling ArgumentParser HelpCommand.swift
[241/246] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[242/246] Emitting module EntryPointGenerator
[243/246] Compiling EntryPointGenerator EntryPointGenerator.swift
[243/246] Write Objects.LinkFileList
[244/246] Linking EntryPointGenerator-tool
[245/246] Applying EntryPointGenerator-tool
[0/1] Planning build
[1/1] Compiling plugin EntryPointGeneratorPlugin
[2/2] Compiling plugin CodeGeneratorPlugin
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
[5/5] Compiling plugin GenerateManual
Building for debugging...
[5/33] Compiling _SwiftSyntaxCShims dummy.c
[6/33] Write swift-version-2F0A5646E1D333AE.txt
[8/48] Compiling SwiftSyntax510 Empty.swift
[9/48] Emitting module SwiftSyntax510
[10/48] Compiling SwiftSyntax600 Empty.swift
[11/48] Emitting module SwiftSyntax600
[12/50] Emitting module SwiftSyntax509
[13/50] Compiling SwiftSyntax509 Empty.swift
[14/50] Emitting module ExtensionApiJson
[15/50] Compiling ExtensionApiJson ExtensionApiJson.swift
[16/50] Emitting module ExtensionApiJson
[17/50] Compiling ExtensionApiJson resource_bundle_accessor.swift
[19/50] Compiling ExtensionApiJson ExtensionApiJson.swift
[20/115] Emitting module ArgumentParserToolInfo
[21/115] Compiling ArgumentParserToolInfo ToolInfo.swift
[22/154] Compiling ArgumentParser NameSpecification.swift
[23/154] Compiling ArgumentParser Option.swift
[24/154] Compiling ArgumentParser OptionGroup.swift
[25/154] Compiling ArgumentParser AsyncParsableCommand.swift
[26/154] Compiling ArgumentParser CommandConfiguration.swift
[27/154] Compiling ArgumentParser CommandGroup.swift
[28/154] Compiling ArgumentParser EnumerableFlag.swift
[29/154] Compiling ArgumentParser ExpressibleByArgument.swift
[29/171] Write Objects.LinkFileList
[31/171] Emitting module ArgumentParser
[36/175] Compiling SwiftOperators PrecedenceGraph.swift
[37/175] Compiling SwiftOperators OperatorTable.swift
[38/175] Compiling SwiftOperators OperatorTable+Semantics.swift
[39/175] Compiling SwiftOperators OperatorTable+Defaults.swift
[40/175] Compiling SwiftOperators PrecedenceGroup.swift
[41/176] Compiling SwiftOperators Operator.swift
[42/176] Compiling SwiftOperators OperatorError+Diagnostics.swift
[43/176] Emitting module SwiftOperators
[44/176] Compiling SwiftOperators OperatorTable+Folding.swift
[45/176] Compiling SwiftOperators OperatorError.swift
[46/176] Compiling SwiftOperators SyntaxSynthesis.swift
[47/194] Compiling ExtensionApi ApiJsonModel.swift
[48/194] Compiling ExtensionApi ApiJsonModel+Extra.swift
[49/194] Emitting module ExtensionApi
[49/194] Write Objects.LinkFileList
[51/194] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[52/194] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[53/194] Compiling SwiftSyntaxMacros Macro.swift
[54/194] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[55/194] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[56/194] Compiling SwiftSyntaxMacros AttachedMacro.swift
[57/194] Compiling SwiftSyntaxMacros BodyMacro.swift
[58/194] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[59/194] Compiling SwiftSyntaxMacros AccessorMacro.swift
[60/194] Compiling SwiftSyntaxMacros MemberMacro.swift
[61/194] Compiling SwiftSyntaxMacros PeerMacro.swift
[64/194] Compiling SwiftSyntaxMacros PreambleMacro.swift
[66/194] Compiling SwiftSyntaxMacros Macro+Format.swift
[67/195] Compiling ArgumentParser InputOrigin.swift
[68/195] Compiling ArgumentParser Name.swift
[69/195] Compiling ArgumentParser Parsed.swift
[70/195] Compiling ArgumentParser ParsedValues.swift
[74/195] Compiling ArgumentParser Errors.swift
[75/195] Compiling ArgumentParser Flag.swift
[76/195] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[77/195] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[84/195] Compiling ArgumentParser ParsableArguments.swift
[85/195] Compiling ArgumentParser ParsableArgumentsValidation.swift
[86/195] Compiling ArgumentParser ParsableCommand.swift
[87/195] Compiling ArgumentParser ArgumentDecoder.swift
[88/195] Compiling ArgumentParser HelpGenerator.swift
[89/195] Compiling ArgumentParser MessageInfo.swift
[90/195] Compiling ArgumentParser UsageGenerator.swift
[91/195] Compiling ArgumentParser CollectionExtensions.swift
[92/195] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[93/195] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[94/195] Emitting module SwiftSyntaxMacros
[95/195] Compiling ArgumentParser Platform.swift
[96/195] Compiling ArgumentParser SequenceExtensions.swift
[97/195] Compiling ArgumentParser StringExtensions.swift
[98/195] Compiling ArgumentParser Tree.swift
[99/195] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[100/195] Compiling ArgumentParser ParserError.swift
[101/195] Compiling ArgumentParser SplitArguments.swift
[102/195] Compiling ArgumentParser DumpHelpGenerator.swift
[103/195] Compiling ArgumentParser HelpCommand.swift
[104/195] Compiling ArgumentParser ArgumentDefinition.swift
[105/195] Compiling ArgumentParser ArgumentSet.swift
[106/195] Compiling ArgumentParser CommandParser.swift
[107/195] Compiling ArgumentParser InputKey.swift
[107/205] Linking EntryPointGenerator-tool
[108/205] Applying EntryPointGenerator-tool
[110/205] Emitting module SwiftSyntaxMacroExpansion
Generated swift_entry_point, registering 3 classes, in EntryPoint.generated.swift.
[110/205] Generating Godot entry point
[111/205] Write sources
[112/205] Linking Generator-tool
[114/205] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[115/205] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[116/205] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[117/205] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[118/205] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[119/205] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[120/205] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[121/205] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[122/205] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[122/205] Applying Generator-tool
[124/217] Emitting module SwiftCompilerPluginMessageHandling
[125/218] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[126/218] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[127/218] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[128/218] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[129/218] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[130/218] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[131/218] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[132/218] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[133/218] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[134/218] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[135/218] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[136/218] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[137/220] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[138/220] Emitting module SwiftCompilerPlugin
[139/235] Compiling SwiftGodotMacroLibrary SwiftSyntaxExtensions.swift
[140/236] Compiling SwiftGodotMacroLibrary SceneTreeMacro.swift
[141/236] Compiling SwiftGodotMacroLibrary SignalAttachmentMacro.swift
[142/236] Compiling SwiftGodotMacroLibrary SignalMacro.swift
[143/236] Compiling SwiftGodotMacroLibrary MacroCallable.swift
[144/236] Compiling SwiftGodotMacroLibrary MacroExport.swift
[145/236] Compiling SwiftGodotMacroLibrary NativeHandleDiscardingMacro.swift
[146/236] Compiling SwiftGodotMacroLibrary PickerNameProviderMacro.swift
[147/236] Compiling SwiftGodotMacroLibrary TextureLiteralMacro.swift
[148/236] Compiling SwiftGodotMacroLibrary CodePrinter.swift
[149/236] Compiling SwiftGodotMacroLibrary InitSwiftExtensionMacro.swift
[150/236] Compiling SwiftGodotMacroLibrary MacroExportGroup.swift
[151/236] Compiling SwiftGodotMacroLibrary MacroExportSubgroup.swift
[152/236] Emitting module SwiftGodotMacroLibrary
[153/236] Compiling SwiftGodotMacroLibrary MacroGodot.swift
[154/236] Compiling SwiftGodotMacroLibrary MacroSharedApi.swift
[154/236] Generating GeneratedSources
[155/236] Write Objects.LinkFileList
[156/236] Write sources
[157/236] Generating GeneratedSources
[158/236] Write sources
[160/236] Emitting module SwiftSyntax
[174/236] Linking SwiftGodotMacroLibrary-tool
[176/688] Compiling SwiftGodot AudioStreamWAV.swift
[177/688] Compiling SwiftGodot BackBufferCopy.swift
[178/688] Compiling SwiftGodot BaseButton.swift
[179/688] Compiling SwiftGodot BaseMaterial3D.swift
[180/688] Compiling SwiftGodot BitMap.swift
[181/688] Compiling SwiftGodot Bone2D.swift
[182/688] Compiling SwiftGodot BoneAttachment3D.swift
[183/688] Compiling SwiftGodot ColorExtensions.swift
[184/688] Compiling SwiftGodot Compat.swift
[185/688] Compiling SwiftGodot GDUtilityFunctions.swift
[186/688] Compiling SwiftGodot NodeExtensions.swift
[187/688] Compiling SwiftGodot AudioStreamPlaylist.swift
[188/688] Compiling SwiftGodot AudioStreamPolyphonic.swift
[189/688] Compiling SwiftGodot AudioStreamRandomizer.swift
[190/688] Compiling SwiftGodot AudioStreamSynchronized.swift
[198/688] Compiling SwiftGodot BoneMap.swift
[199/688] Compiling SwiftGodot BoxContainer.swift
[200/688] Compiling SwiftGodot BoxMesh.swift
[201/688] Compiling SwiftGodot BoxOccluder3D.swift
[202/688] Compiling SwiftGodot BoxShape3D.swift
[203/688] Compiling SwiftGodot Button.swift
[204/688] Compiling SwiftGodot ButtonGroup.swift
[205/688] Compiling SwiftGodot CPUParticles2D.swift
[206/688] Compiling SwiftGodot CPUParticles3D.swift
[207/688] Compiling SwiftGodot CSGBox3D.swift
[208/713] Compiling SwiftGodot ColorExtensions.swift
[209/713] Compiling SwiftGodot Compat.swift
[210/713] Compiling SwiftGodot GDUtilityFunctions.swift
[211/713] Compiling SwiftGodot NodeExtensions.swift
[212/713] Compiling SwiftGodot PhysicsDirectSpaceState2D+IntersectRayResult.swift
[213/713] Compiling SwiftGodot PhysicsDirectSpaceState3D+IntersectRayResult.swift
[214/713] Compiling SwiftGodot RefCountedExtensions.swift
[215/713] Compiling SwiftGodot VariantArrayExtensions.swift
[216/713] Compiling SwiftGodot VariantDictionaryExtensions.swift
[217/713] Compiling SwiftGodot FastVariant.swift
[218/713] Compiling SwiftGodot GodotInterface.swift
[219/713] Compiling SwiftGodot MacroDefs.swift
[220/713] Compiling SwiftGodot MacroCallableWrapResult.swift
[221/713] Compiling SwiftGodot MacroExportInvokeGetter.swift
[222/713] Compiling SwiftGodot MacroExportInvokeSetter.swift
[223/713] Compiling SwiftGodot MacroGodotArgumentPropInfo.swift
[224/713] Compiling SwiftGodot MacroGodotPropertyPropInfo.swift
[225/713] Compiling SwiftGodot MacroGodotReturnValuePropInfo.swift
[226/713] Compiling SwiftGodot LinearInterpolation.swift
[227/713] Compiling SwiftGodot RotationConversion.swift
[228/713] Compiling SwiftGodot Snapped.swift
[229/713] Compiling SwiftGodot SwiftGodot.swift
[230/713] Compiling SwiftGodot Variant.swift
[231/713] Compiling SwiftGodot AABB.swift
[232/713] Compiling SwiftGodot Array.swift
[233/713] Compiling SwiftGodot AnimationNodeAnimation.swift
[234/713] Compiling SwiftGodot AnimationNodeBlend2.swift
[235/713] Compiling SwiftGodot AnimationNodeBlend3.swift
[236/713] Compiling SwiftGodot AnimationNodeBlendSpace1D.swift
[237/713] Compiling SwiftGodot AnimationNodeBlendSpace2D.swift
[238/713] Compiling SwiftGodot AnimationNodeBlendTree.swift
[239/713] Compiling SwiftGodot AnimationNodeExtension.swift
[240/713] Compiling SwiftGodot AnimationNodeOneShot.swift
[241/713] Compiling SwiftGodot AnimationNodeOutput.swift
[242/713] Compiling SwiftGodot AnimationNodeStateMachine.swift
[243/713] Compiling SwiftGodot AnimationNodeStateMachinePlayback.swift
[244/713] Compiling SwiftGodot AnimationNodeStateMachineTransition.swift
[245/713] Compiling SwiftGodot AnimationNodeSub2.swift
[246/713] Compiling SwiftGodot AnimationNodeSync.swift
[247/713] Compiling SwiftGodot AnimationNodeTimeScale.swift
[248/713] Compiling SwiftGodot AnimationNodeTimeSeek.swift
[249/713] Compiling SwiftGodot AnimationNodeTransition.swift
[250/713] Compiling SwiftGodot AnimationPlayer.swift
[251/713] Compiling SwiftGodot AnimationRootNode.swift
[252/713] Compiling SwiftGodot AnimationTree.swift
[253/713] Compiling SwiftGodot Area2D.swift
[254/713] Compiling SwiftGodot Area3D.swift
[255/713] Compiling SwiftGodot ArrayMesh.swift
[256/713] Compiling SwiftGodot ArrayOccluder3D.swift
[257/713] Compiling SwiftGodot AspectRatioContainer.swift
[283/788] Compiling SwiftGodot AStar3D.swift
[284/788] Compiling SwiftGodot AStarGrid2D.swift
[285/788] Compiling SwiftGodot AcceptDialog.swift
[286/788] Compiling SwiftGodot AnimatableBody2D.swift
[287/788] Compiling SwiftGodot AnimatableBody3D.swift
[288/788] Compiling SwiftGodot AnimatedSprite2D.swift
[289/788] Compiling SwiftGodot AnimatedSprite3D.swift
[290/788] Compiling SwiftGodot AudioEffectChorus.swift
[291/788] Compiling SwiftGodot AudioEffectCompressor.swift
[292/788] Compiling SwiftGodot AudioEffectDelay.swift
[293/788] Compiling SwiftGodot AudioEffectDistortion.swift
[294/788] Compiling SwiftGodot AudioEffectEQ.swift
[295/788] Compiling SwiftGodot AudioEffectEQ10.swift
[296/788] Compiling SwiftGodot AudioEffectEQ21.swift
[297/788] Compiling SwiftGodot AnimatedTexture.swift
[298/788] Compiling SwiftGodot Animation.swift
[299/788] Compiling SwiftGodot AnimationLibrary.swift
[300/788] Compiling SwiftGodot AnimationMixer.swift
[301/788] Compiling SwiftGodot AnimationNode.swift
[302/788] Compiling SwiftGodot AnimationNodeAdd2.swift
[303/788] Compiling SwiftGodot AnimationNodeAdd3.swift
[304/788] Compiling SwiftGodot Vector2i.swift
[305/788] Compiling SwiftGodot Vector3.swift
[306/788] Compiling SwiftGodot Vector3i.swift
[307/788] Compiling SwiftGodot Vector4.swift
[308/788] Compiling SwiftGodot Vector4i.swift
[309/788] Compiling SwiftGodot AESContext.swift
[310/788] Compiling SwiftGodot AStar2D.swift
[311/788] Compiling SwiftGodot AtlasTexture.swift
[312/788] Compiling SwiftGodot AudioBusLayout.swift
[313/788] Compiling SwiftGodot AudioEffect.swift
[314/788] Compiling SwiftGodot AudioEffectAmplify.swift
[315/788] Compiling SwiftGodot AudioEffectBandLimitFilter.swift
[316/788] Compiling SwiftGodot AudioEffectBandPassFilter.swift
[317/788] Compiling SwiftGodot AudioEffectCapture.swift
[318/788] Compiling SwiftGodot Transform2D.swift
[319/788] Compiling SwiftGodot Transform3D.swift
[320/788] Compiling SwiftGodot utility.swift
[321/788] Compiling SwiftGodot Vector2.swift
[343/813] Compiling SwiftGodot AudioEffectEQ6.swift
[344/813] Compiling SwiftGodot AudioEffectFilter.swift
[345/813] Compiling SwiftGodot AudioEffectHardLimiter.swift
[346/813] Compiling SwiftGodot AudioEffectHighPassFilter.swift
[347/813] Compiling SwiftGodot AudioEffectHighShelfFilter.swift
[348/813] Compiling SwiftGodot AudioEffectInstance.swift
[349/813] Compiling SwiftGodot AudioEffectLimiter.swift
[350/871] Compiling SwiftDiagnostics Message.swift
[351/872] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[352/872] Compiling SwiftBasicFormat Syntax+Extensions.swift
[353/872] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[354/872] Compiling SwiftDiagnostics Note.swift
[355/872] Compiling SwiftGodot CompressedTexture2D.swift
[356/872] Compiling SwiftGodot CompressedTexture2DArray.swift
[357/872] Compiling SwiftGodot CompressedTexture3D.swift
[358/872] Compiling SwiftGodot CompressedTextureLayered.swift
[359/872] Compiling SwiftGodot ConcavePolygonShape2D.swift
[360/872] Compiling SwiftGodot ConcavePolygonShape3D.swift
[361/872] Compiling SwiftGodot ConeTwistJoint3D.swift
[362/872] Compiling SwiftGodot ConfigFile.swift
[363/872] Compiling SwiftGodot ConfirmationDialog.swift
[364/872] Compiling SwiftGodot Container.swift
[365/872] Compiling SwiftGodot Control.swift
[366/872] Compiling SwiftGodot ConvexPolygonShape2D.swift
[367/872] Compiling SwiftGodot ConvexPolygonShape3D.swift
[368/872] Compiling SwiftGodot Crypto.swift
[369/872] Compiling SwiftGodot CryptoKey.swift
[370/872] Compiling SwiftGodot Cubemap.swift
[371/872] Compiling SwiftGodot CubemapArray.swift
[372/872] Compiling SwiftGodot Curve.swift
[373/872] Compiling SwiftGodot Curve2D.swift
[374/872] Compiling SwiftGodot Curve3D.swift
[375/872] Compiling SwiftGodot CurveTexture.swift
[376/872] Compiling SwiftGodot CurveXYZTexture.swift
[377/872] Compiling SwiftGodot CylinderMesh.swift
[378/872] Compiling SwiftGodot CylinderShape3D.swift
[379/872] Compiling SwiftGodot DTLSServer.swift
[380/897] Compiling SwiftDiagnostics FixIt.swift
[381/897] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[382/897] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[383/897] Compiling SwiftDiagnostics Convenience.swift
[384/897] Compiling SwiftDiagnostics Diagnostic.swift
[385/897] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[386/897] Emitting module SwiftDiagnostics
[387/897] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[388/897] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[389/897] Compiling SwiftBasicFormat InferIndentation.swift
[390/897] Emitting module SwiftBasicFormat
[391/897] Compiling SwiftBasicFormat BasicFormat.swift
[392/897] Compiling SwiftParser StringLiterals.swift
[393/897] Compiling SwiftParser SwiftParserCompatibility.swift
[394/897] Compiling SwiftParser SwiftVersion.swift
[395/897] Compiling SwiftParser SyntaxUtils.swift
[396/901] Emitting module SwiftParser
[397/901] Compiling SwiftParser Recovery.swift
[398/901] Compiling SwiftParser Specifiers.swift
[399/901] Compiling SwiftParser Statements.swift
[400/901] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[405/901] Compiling SwiftParser TopLevel.swift
[406/901] Compiling SwiftParser TriviaParser.swift
[407/901] Compiling SwiftParser Types.swift
[408/901] Compiling SwiftParser ExperimentalFeatures.swift
[409/901] Compiling SwiftParser TokenConsumer.swift
[410/901] Compiling SwiftParser TokenPrecedence.swift
[411/901] Compiling SwiftParser TokenSpec.swift
[412/901] Compiling SwiftParser TokenSpecSet.swift
[413/901] Compiling SwiftParser Cursor.swift
[414/901] Compiling SwiftParser Lexeme.swift
[415/901] Compiling SwiftParser LexemeSequence.swift
[416/901] Compiling SwiftParser Lexer.swift
[417/901] Compiling SwiftParser RegexLiteralLexer.swift
[418/901] Compiling SwiftParser Attributes.swift
[419/901] Compiling SwiftParser Availability.swift
[420/901] Compiling SwiftParser CharacterInfo.swift
[421/901] Compiling SwiftParser CollectionNodes+Parsable.swift
[422/901] Compiling SwiftParser Declarations.swift
[423/901] Compiling SwiftParser Nominals.swift
[424/901] Compiling SwiftParser Parameters.swift
[425/901] Compiling SwiftParser ParseSourceFile.swift
[429/926] Compiling SwiftParser Parser.swift
[430/926] Compiling SwiftParser Patterns.swift
[431/926] Compiling SwiftParser Directives.swift
[432/926] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[433/926] Compiling SwiftParser Expressions.swift
[434/926] Compiling SwiftParser IncrementalParseTransition.swift
[435/926] Compiling SwiftParser IsValidIdentifier.swift
[436/926] Compiling SwiftParser UnicodeScalarExtensions.swift
[437/926] Compiling SwiftParser Lookahead.swift
[438/926] Compiling SwiftParser LoopProgressCondition.swift
[439/926] Compiling SwiftParser Modifiers.swift
[440/926] Compiling SwiftParser Names.swift
[475/926] Compiling SwiftParser IsLexerClassified.swift
[476/926] Compiling SwiftParser LayoutNodes+Parsable.swift
[477/926] Compiling SwiftParser Parser+TokenSpecSet.swift
[478/926] Compiling SwiftParser TokenSpecStaticMembers.swift
[484/951] Compiling SwiftGodot CapsuleShape3D.swift
[485/951] Compiling SwiftGodot CenterContainer.swift
[486/951] Compiling SwiftGodot CharFXTransform.swift
[487/951] Compiling SwiftGodot CharacterBody2D.swift
[488/951] Compiling SwiftGodot CharacterBody3D.swift
[489/951] Compiling SwiftGodot CheckBox.swift
[490/951] Compiling SwiftGodot CheckButton.swift
[491/951] Compiling SwiftGodot CircleShape2D.swift
[492/951] Compiling SwiftGodot ClassDB.swift
[493/951] Compiling SwiftGodot CodeEdit.swift
[494/951] Compiling SwiftGodot CodeHighlighter.swift
[495/951] Compiling SwiftGodot CollisionObject2D.swift
[496/951] Compiling SwiftGodot CollisionObject3D.swift
[497/951] Compiling SwiftGodot CollisionPolygon2D.swift
[498/951] Compiling SwiftGodot CollisionPolygon3D.swift
[499/951] Compiling SwiftGodot CollisionShape2D.swift
[500/951] Compiling SwiftGodot CollisionShape3D.swift
[501/951] Compiling SwiftGodot ColorPalette.swift
[502/951] Compiling SwiftGodot ColorPicker.swift
[503/951] Compiling SwiftGodot ColorPickerButton.swift
[504/951] Compiling SwiftGodot ColorRect.swift
[505/951] Compiling SwiftGodot Compositor.swift
[506/951] Compiling SwiftGodot CompositorEffect.swift
[507/951] Compiling SwiftGodot CompressedCubemap.swift
[508/951] Compiling SwiftGodot CompressedCubemapArray.swift
[538/1017] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[539/1017] Compiling SwiftParserDiagnostics PresenceUtils.swift
[540/1018] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[541/1018] Compiling EntryPointGenerator EntryPointGenerator.swift
[542/1018] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[543/1018] Emitting module EntryPointGenerator
[543/1018] Write Objects.LinkFileList
[545/1018] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[546/1018] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[547/1018] Compiling SwiftParserDiagnostics Utils.swift
[548/1018] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[549/1018] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[550/1018] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[551/1018] Compiling SwiftGodot Arguments.swift
[552/1018] Compiling SwiftGodot BuiltinConvertible.swift
[553/1018] Compiling SwiftGodot ClassServices.swift
[554/1018] Compiling SwiftGodot FastFunctionBridging.swift
[555/1018] Compiling SwiftGodot FastStringName.swift
[556/1018] Compiling SwiftGodot InspectableProperty.swift
[557/1018] Compiling SwiftGodot NIOLock.swift
[558/1018] Compiling SwiftGodot ObjectCollection.swift
[559/1018] Compiling SwiftGodot ObjectExtensions.swift
[560/1018] Compiling SwiftGodot Packed.swift
[561/1018] Compiling SwiftGodot SignalProxy.swift
[562/1018] Compiling SwiftGodot SignalRegistration.swift
[563/1018] Compiling SwiftGodot SignalWithArguments.swift
[564/1018] Compiling SwiftGodot StringExtensions.swift
[565/1018] Compiling SwiftGodot TypedArray.swift
[566/1018] Compiling SwiftGodot TypedDictionary.swift
[567/1018] Compiling SwiftGodot VariantCollection.swift
[568/1018] Compiling SwiftGodot VariantConvertible.swift
[569/1018] Compiling SwiftGodot Various.swift
[570/1018] Compiling SwiftGodot Wrapped.swift
[571/1018] Compiling SwiftGodot EntryPoint.swift
[572/1018] Compiling SwiftGodot Export.swift
[573/1018] Compiling SwiftGodot Arithmetic.swift
[574/1018] Compiling SwiftGodot CallableExtensions.swift
[575/1018] Compiling SwiftGodot ClassInfoExtensions.swift
[576/1043] Compiling SwiftParserDiagnostics MissingNodesError.swift
[577/1043] Compiling SwiftParserDiagnostics MissingTokenError.swift
[578/1043] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[579/1043] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[580/1043] Emitting module SwiftParserDiagnostics
[580/1058] Linking EntryPointGenerator
[581/1058] Applying EntryPointGenerator
[608/1083] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[609/1083] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[610/1084] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[611/1084] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[612/1084] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[613/1084] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[614/1084] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[615/1084] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[616/1084] Compiling SwiftSyntaxBuilder Indenter.swift
[617/1084] Compiling SwiftSyntaxBuilder ListBuilder.swift
[618/1084] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[619/1084] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[620/1084] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[621/1084] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[622/1084] Emitting module SwiftSyntaxBuilder
[623/1084] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[624/1098] Compiling Generator UtilityGen.swift
[625/1098] Compiling Generator UnsafePointerHelpers.swift
[626/1099] Compiling Generator TypeHelpers.swift
[627/1099] Compiling Generator main.swift
[628/1099] Compiling Generator Printer.swift
[629/1099] Compiling Generator StringOperations.swift
[630/1099] Compiling Generator DocModel.swift
[631/1099] Compiling Generator Enums.swift
[632/1099] Compiling Generator ClassGen.swift
[633/1099] Compiling Generator Data.swift
[634/1099] Compiling Generator MethodGen.swift
[635/1099] Compiling Generator NativeStructures.swift
[636/1099] Compiling Generator Arguments.swift
[637/1099] Compiling Generator BuiltinGen.swift
[638/1099] Emitting module Generator
[638/1099] Write Objects.LinkFileList
[639/1099] Linking Generator
[640/1099] Applying Generator
[642/1099] Compiling SwiftGodot DampedSpringJoint2D.swift
[643/1099] Compiling SwiftGodot Decal.swift
[644/1099] Compiling SwiftGodot DirAccess.swift
[645/1099] Compiling SwiftGodot DirectionalLight2D.swift
[646/1099] Compiling SwiftGodot DirectionalLight3D.swift
[647/1099] Compiling SwiftGodot DisplayServer.swift
[648/1099] Compiling SwiftGodot DisplayServerEmbedded.swift
[649/1099] Compiling SwiftGodot ENetConnection.swift
[650/1099] Compiling SwiftGodot ENetMultiplayerPeer.swift
[651/1099] Compiling SwiftGodot ENetPacketPeer.swift
[652/1099] Compiling SwiftGodot EditorCommandPalette.swift
[653/1099] Compiling SwiftGodot EditorContextMenuPlugin.swift
[654/1099] Compiling SwiftGodot EditorDebuggerPlugin.swift
[655/1099] Compiling SwiftGodot EditorDebuggerSession.swift
[656/1099] Compiling SwiftGodot EditorExportPlatform.swift
[657/1099] Compiling SwiftGodot EditorExportPlatformAndroid.swift
[658/1099] Compiling SwiftGodot EditorExportPlatformExtension.swift
[659/1099] Compiling SwiftGodot EditorExportPlatformIOS.swift
[660/1099] Compiling SwiftGodot EditorExportPlatformLinuxBSD.swift
[661/1099] Compiling SwiftGodot EditorExportPlatformMacOS.swift
[662/1099] Compiling SwiftGodot EditorExportPlatformPC.swift
[663/1099] Compiling SwiftGodot EditorExportPlatformWeb.swift
[664/1099] Compiling SwiftGodot EditorExportPlatformWindows.swift
[665/1099] Compiling SwiftGodot EditorExportPlugin.swift
[666/1099] Compiling SwiftGodot EditorExportPreset.swift
[667/1124] Compiling SwiftGodot EditorFeatureProfile.swift
[668/1124] Compiling SwiftGodot EditorFileDialog.swift
[669/1124] Compiling SwiftGodot EditorFileSystem.swift
[670/1124] Compiling SwiftGodot EditorFileSystemDirectory.swift
[671/1124] Compiling SwiftGodot EditorFileSystemImportFormatSupportQuery.swift
[672/1124] Compiling SwiftGodot EditorImportPlugin.swift
[673/1124] Compiling SwiftGodot EditorInspector.swift
[674/1124] Compiling SwiftGodot EditorInspectorPlugin.swift
[675/1124] Compiling SwiftGodot EditorInterface.swift
[676/1124] Compiling SwiftGodot EditorNode3DGizmo.swift
[677/1124] Compiling SwiftGodot EditorNode3DGizmoPlugin.swift
[678/1124] Compiling SwiftGodot EditorPaths.swift
[679/1124] Compiling SwiftGodot EditorPlugin.swift
[680/1124] Compiling SwiftGodot EditorProperty.swift
[681/1124] Compiling SwiftGodot EditorResourceConversionPlugin.swift
[682/1124] Compiling SwiftGodot EditorResourcePicker.swift
[683/1124] Compiling SwiftGodot EditorResourcePreview.swift
[684/1124] Compiling SwiftGodot EditorResourcePreviewGenerator.swift
[685/1124] Compiling SwiftGodot EditorResourceTooltipPlugin.swift
[686/1124] Compiling SwiftGodot EditorSceneFormatImporter.swift
[687/1124] Compiling SwiftGodot EditorSceneFormatImporterBlend.swift
[688/1124] Compiling SwiftGodot EditorSceneFormatImporterFBX2GLTF.swift
[689/1124] Compiling SwiftGodot EditorSceneFormatImporterGLTF.swift
[690/1124] Compiling SwiftGodot EditorSceneFormatImporterUFBX.swift
[691/1124] Compiling SwiftGodot EditorScenePostImport.swift
[742/1199] Compiling SwiftGodot FogMaterial.swift
[743/1199] Compiling SwiftGodot FogVolume.swift
[744/1199] Compiling SwiftGodot Font.swift
[745/1199] Compiling SwiftGodot FontFile.swift
[746/1199] Compiling SwiftGodot FontVariation.swift
[747/1199] Compiling SwiftGodot FramebufferCacheRD.swift
[748/1199] Compiling SwiftGodot GDExtension.swift
[749/1199] Compiling SwiftGodot GDExtensionManager.swift
[750/1199] Compiling SwiftGodot GDScript.swift
[751/1199] Compiling SwiftGodot GDScriptSyntaxHighlighter.swift
[752/1199] Compiling SwiftGodot GLTFAccessor.swift
[753/1199] Compiling SwiftGodot GLTFAnimation.swift
[754/1199] Compiling SwiftGodot GLTFBufferView.swift
[755/1199] Compiling SwiftGodot GLTFCamera.swift
[756/1199] Compiling SwiftGodot GLTFDocument.swift
[757/1199] Compiling SwiftGodot GLTFDocumentExtension.swift
[758/1199] Compiling SwiftGodot GLTFDocumentExtensionConvertImporterMesh.swift
[759/1199] Compiling SwiftGodot GLTFLight.swift
[760/1199] Compiling SwiftGodot GLTFMesh.swift
[761/1199] Compiling SwiftGodot GLTFNode.swift
[762/1199] Compiling SwiftGodot GLTFObjectModelProperty.swift
[763/1199] Compiling SwiftGodot GLTFPhysicsBody.swift
[764/1199] Compiling SwiftGodot GLTFPhysicsShape.swift
[765/1199] Compiling SwiftGodot GLTFSkeleton.swift
[766/1199] Compiling SwiftGodot GLTFSkin.swift
[767/1224] Compiling SwiftGodot EditorScenePostImportPlugin.swift
[768/1224] Compiling SwiftGodot EditorScript.swift
[769/1224] Compiling SwiftGodot EditorScriptPicker.swift
[770/1224] Compiling SwiftGodot EditorSelection.swift
[771/1224] Compiling SwiftGodot EditorSettings.swift
[772/1224] Compiling SwiftGodot EditorSpinSlider.swift
[773/1224] Compiling SwiftGodot EditorSyntaxHighlighter.swift
[774/1224] Compiling SwiftGodot EditorToaster.swift
[775/1224] Compiling SwiftGodot EditorTranslationParserPlugin.swift
[776/1224] Compiling SwiftGodot EditorUndoRedoManager.swift
[777/1224] Compiling SwiftGodot EditorVCSInterface.swift
[778/1224] Compiling SwiftGodot EncodedObjectAsID.swift
[779/1224] Compiling SwiftGodot Engine.swift
[780/1224] Compiling SwiftGodot EngineDebugger.swift
[781/1224] Compiling SwiftGodot EngineProfiler.swift
[782/1224] Compiling SwiftGodot Environment.swift
[783/1224] Compiling SwiftGodot Expression.swift
[784/1224] Compiling SwiftGodot ExternalTexture.swift
[785/1224] Compiling SwiftGodot FBXDocument.swift
[786/1224] Compiling SwiftGodot FBXState.swift
[787/1224] Compiling SwiftGodot FastNoiseLite.swift
[788/1224] Compiling SwiftGodot FileAccess.swift
[789/1224] Compiling SwiftGodot FileDialog.swift
[790/1224] Compiling SwiftGodot FileSystemDock.swift
[791/1224] Compiling SwiftGodot FlowContainer.swift
[842/1299] Compiling SwiftGodot GraphFrame.swift
[843/1299] Compiling SwiftGodot GraphNode.swift
[844/1299] Compiling SwiftGodot GridContainer.swift
[845/1299] Compiling SwiftGodot GridMap.swift
[846/1299] Compiling SwiftGodot GridMapEditorPlugin.swift
[847/1299] Compiling SwiftGodot GrooveJoint2D.swift
[848/1299] Compiling SwiftGodot HBoxContainer.swift
[849/1299] Compiling SwiftGodot HFlowContainer.swift
[850/1299] Compiling SwiftGodot HMACContext.swift
[851/1299] Compiling SwiftGodot HScrollBar.swift
[852/1299] Compiling SwiftGodot HSeparator.swift
[853/1299] Compiling SwiftGodot HSlider.swift
[854/1299] Compiling SwiftGodot HSplitContainer.swift
[855/1299] Compiling SwiftGodot HTTPClient.swift
[856/1299] Compiling SwiftGodot HTTPRequest.swift
[857/1299] Compiling SwiftGodot HashingContext.swift
[858/1299] Compiling SwiftGodot HeightMapShape3D.swift
[859/1299] Compiling SwiftGodot HingeJoint3D.swift
[860/1299] Compiling SwiftGodot IP.swift
[861/1299] Compiling SwiftGodot Image.swift
[862/1299] Compiling SwiftGodot ImageFormatLoader.swift
[863/1299] Compiling SwiftGodot ImageFormatLoaderExtension.swift
[864/1299] Compiling SwiftGodot ImageTexture.swift
[865/1299] Compiling SwiftGodot ImageTexture3D.swift
[866/1299] Compiling SwiftGodot ImageTextureLayered.swift
[892/1349] Compiling SwiftGodot GLTFSpecGloss.swift
[893/1349] Compiling SwiftGodot GLTFState.swift
[894/1349] Compiling SwiftGodot GLTFTexture.swift
[895/1349] Compiling SwiftGodot GLTFTextureSampler.swift
[896/1349] Compiling SwiftGodot GPUParticles2D.swift
[897/1349] Compiling SwiftGodot GPUParticles3D.swift
[898/1349] Compiling SwiftGodot GPUParticlesAttractor3D.swift
[899/1349] Compiling SwiftGodot GPUParticlesAttractorBox3D.swift
[900/1349] Compiling SwiftGodot GPUParticlesAttractorSphere3D.swift
[901/1349] Compiling SwiftGodot GPUParticlesAttractorVectorField3D.swift
[902/1349] Compiling SwiftGodot GPUParticlesCollision3D.swift
[903/1349] Compiling SwiftGodot GPUParticlesCollisionBox3D.swift
[904/1349] Compiling SwiftGodot GPUParticlesCollisionHeightField3D.swift
[905/1349] Compiling SwiftGodot GPUParticlesCollisionSDF3D.swift
[906/1349] Compiling SwiftGodot GPUParticlesCollisionSphere3D.swift
[907/1349] Compiling SwiftGodot Generic6DOFJoint3D.swift
[908/1349] Compiling SwiftGodot Geometry2D.swift
[909/1349] Compiling SwiftGodot Geometry3D.swift
[910/1349] Compiling SwiftGodot GeometryInstance3D.swift
[911/1349] Compiling SwiftGodot GodotInstance.swift
[912/1349] Compiling SwiftGodot Gradient.swift
[913/1349] Compiling SwiftGodot GradientTexture1D.swift
[914/1349] Compiling SwiftGodot GradientTexture2D.swift
[915/1349] Compiling SwiftGodot GraphEdit.swift
[916/1349] Compiling SwiftGodot GraphElement.swift
[917/1374] Compiling SwiftGodot ImmediateMesh.swift
[918/1374] Compiling SwiftGodot ImporterMesh.swift
[919/1374] Compiling SwiftGodot ImporterMeshInstance3D.swift
[920/1374] Compiling SwiftGodot Input.swift
[921/1374] Compiling SwiftGodot InputEvent.swift
[922/1374] Compiling SwiftGodot InputEventAction.swift
[923/1374] Compiling SwiftGodot InputEventFromWindow.swift
[924/1374] Compiling SwiftGodot InputEventGesture.swift
[925/1374] Compiling SwiftGodot InputEventJoypadButton.swift
[926/1374] Compiling SwiftGodot InputEventJoypadMotion.swift
[927/1374] Compiling SwiftGodot InputEventKey.swift
[928/1374] Compiling SwiftGodot InputEventMIDI.swift
[929/1374] Compiling SwiftGodot InputEventMagnifyGesture.swift
[930/1374] Compiling SwiftGodot InputEventMouse.swift
[931/1374] Compiling SwiftGodot InputEventMouseButton.swift
[932/1374] Compiling SwiftGodot InputEventMouseMotion.swift
[933/1374] Compiling SwiftGodot InputEventPanGesture.swift
[934/1374] Compiling SwiftGodot InputEventScreenDrag.swift
[935/1374] Compiling SwiftGodot InputEventScreenTouch.swift
[936/1374] Compiling SwiftGodot InputEventShortcut.swift
[937/1374] Compiling SwiftGodot InputEventWithModifiers.swift
[938/1374] Compiling SwiftGodot InputMap.swift
[939/1374] Compiling SwiftGodot InstancePlaceholder.swift
[940/1374] Compiling SwiftGodot IntervalTweener.swift
[941/1374] Compiling SwiftGodot ItemList.swift
[992/1449] Compiling SwiftGodot JNISingleton.swift
[993/1449] Compiling SwiftGodot JSON.swift
[994/1449] Compiling SwiftGodot JSONRPC.swift
[995/1449] Compiling SwiftGodot JavaClass.swift
[996/1449] Compiling SwiftGodot JavaClassWrapper.swift
[997/1449] Compiling SwiftGodot JavaObject.swift
[998/1449] Compiling SwiftGodot JavaScriptBridge.swift
[999/1449] Compiling SwiftGodot JavaScriptObject.swift
[1000/1449] Compiling SwiftGodot Joint2D.swift
[1001/1449] Compiling SwiftGodot Joint3D.swift
[1002/1449] Compiling SwiftGodot KinematicCollision2D.swift
[1003/1449] Compiling SwiftGodot KinematicCollision3D.swift
[1004/1449] Compiling SwiftGodot Label.swift
[1005/1449] Compiling SwiftGodot Label3D.swift
[1006/1449] Compiling SwiftGodot LabelSettings.swift
[1007/1449] Compiling SwiftGodot Light2D.swift
[1008/1449] Compiling SwiftGodot Light3D.swift
[1009/1449] Compiling SwiftGodot LightOccluder2D.swift
[1010/1449] Compiling SwiftGodot LightmapGI.swift
[1011/1449] Compiling SwiftGodot LightmapGIData.swift
[1012/1449] Compiling SwiftGodot LightmapProbe.swift
[1013/1449] Compiling SwiftGodot Lightmapper.swift
[1014/1449] Compiling SwiftGodot LightmapperRD.swift
[1015/1449] Compiling SwiftGodot Line2D.swift
[1016/1449] Compiling SwiftGodot LineEdit.swift
[1042/1499] Compiling SwiftGodot LinkButton.swift
[1043/1499] Compiling SwiftGodot LookAtModifier3D.swift
[1044/1499] Compiling SwiftGodot MainLoop.swift
[1045/1499] Compiling SwiftGodot MarginContainer.swift
[1046/1499] Compiling SwiftGodot Marker2D.swift
[1047/1499] Compiling SwiftGodot Marker3D.swift
[1048/1499] Compiling SwiftGodot Marshalls.swift
[1049/1499] Compiling SwiftGodot Material.swift
[1050/1499] Compiling SwiftGodot MenuBar.swift
[1051/1499] Compiling SwiftGodot MenuButton.swift
[1052/1499] Compiling SwiftGodot Mesh.swift
[1053/1499] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[1054/1499] Compiling SwiftGodot MeshDataTool.swift
[1055/1499] Compiling SwiftGodot MeshInstance2D.swift
[1056/1499] Compiling SwiftGodot MeshInstance3D.swift
[1057/1499] Compiling SwiftGodot MeshLibrary.swift
[1058/1499] Compiling SwiftGodot MeshTexture.swift
[1059/1499] Compiling SwiftGodot MethodTweener.swift
[1060/1499] Compiling SwiftGodot MissingNode.swift
[1061/1499] Compiling SwiftGodot MissingResource.swift
[1062/1499] Compiling SwiftGodot MobileVRInterface.swift
[1063/1499] Compiling SwiftGodot MovieWriter.swift
[1064/1499] Compiling SwiftGodot MultiMesh.swift
[1065/1499] Compiling SwiftGodot MultiMeshInstance2D.swift
[1066/1499] Compiling SwiftGodot MultiMeshInstance3D.swift
[1092/1549] Compiling SwiftGodot OpenXRAnalogThresholdModifier.swift
[1093/1549] Compiling SwiftGodot OpenXRBindingModifier.swift
[1094/1549] Compiling SwiftGodot OpenXRBindingModifierEditor.swift
[1095/1549] Compiling SwiftGodot OpenXRCompositionLayer.swift
[1096/1549] Compiling SwiftGodot OpenXRCompositionLayerCylinder.swift
[1097/1549] Compiling SwiftGodot OpenXRCompositionLayerEquirect.swift
[1098/1549] Compiling SwiftGodot OpenXRCompositionLayerQuad.swift
[1099/1549] Compiling SwiftGodot OpenXRDpadBindingModifier.swift
[1100/1549] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[1101/1549] Compiling SwiftGodot OpenXRHand.swift
[1102/1549] Compiling SwiftGodot OpenXRHapticBase.swift
[1103/1549] Compiling SwiftGodot OpenXRHapticVibration.swift
[1104/1549] Compiling SwiftGodot OpenXRIPBinding.swift
[1105/1549] Compiling SwiftGodot OpenXRIPBindingModifier.swift
[1106/1549] Compiling SwiftGodot OpenXRInteractionProfile.swift
[1107/1549] Compiling SwiftGodot OpenXRInteractionProfileEditor.swift
[1108/1549] Compiling SwiftGodot OpenXRInteractionProfileEditorBase.swift
[1109/1549] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[1110/1549] Compiling SwiftGodot OpenXRInterface.swift
[1111/1549] Compiling SwiftGodot OpenXRVisibilityMask.swift
[1112/1549] Compiling SwiftGodot OptimizedTranslation.swift
[1113/1549] Compiling SwiftGodot OptionButton.swift
[1114/1549] Compiling SwiftGodot PCKPacker.swift
[1115/1549] Compiling SwiftGodot PackedDataContainer.swift
[1116/1549] Compiling SwiftGodot PackedDataContainerRef.swift
[1142/1599] Compiling SwiftGodot MultiplayerAPI.swift
[1143/1599] Compiling SwiftGodot MultiplayerAPIExtension.swift
[1144/1599] Compiling SwiftGodot MultiplayerPeer.swift
[1145/1599] Compiling SwiftGodot MultiplayerPeerExtension.swift
[1146/1599] Compiling SwiftGodot MultiplayerSpawner.swift
[1147/1599] Compiling SwiftGodot MultiplayerSynchronizer.swift
[1148/1599] Compiling SwiftGodot Mutex.swift
[1149/1599] Compiling SwiftGodot NativeMenu.swift
[1150/1599] Compiling SwiftGodot NavigationAgent2D.swift
[1151/1599] Compiling SwiftGodot NavigationAgent3D.swift
[1152/1599] Compiling SwiftGodot NavigationLink2D.swift
[1153/1599] Compiling SwiftGodot NavigationLink3D.swift
[1154/1599] Compiling SwiftGodot NavigationMesh.swift
[1155/1599] Compiling SwiftGodot NavigationMeshGenerator.swift
[1156/1599] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[1157/1599] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[1158/1599] Compiling SwiftGodot NavigationObstacle2D.swift
[1159/1599] Compiling SwiftGodot NavigationObstacle3D.swift
[1160/1599] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[1161/1599] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[1162/1599] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[1163/1599] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[1164/1599] Compiling SwiftGodot NavigationPolygon.swift
[1165/1599] Compiling SwiftGodot NavigationRegion2D.swift
[1166/1599] Compiling SwiftGodot NavigationRegion3D.swift
[1167/1624] Compiling SwiftGodot PackedScene.swift
[1168/1624] Compiling SwiftGodot PacketPeer.swift
[1169/1624] Compiling SwiftGodot PacketPeerDTLS.swift
[1170/1624] Compiling SwiftGodot PacketPeerExtension.swift
[1171/1624] Compiling SwiftGodot PacketPeerStream.swift
[1172/1624] Compiling SwiftGodot PacketPeerUDP.swift
[1173/1624] Compiling SwiftGodot Panel.swift
[1174/1624] Compiling SwiftGodot PanelContainer.swift
[1175/1624] Compiling SwiftGodot PanoramaSkyMaterial.swift
[1176/1624] Compiling SwiftGodot Parallax2D.swift
[1177/1624] Compiling SwiftGodot ParallaxBackground.swift
[1178/1624] Compiling SwiftGodot ParallaxLayer.swift
[1179/1624] Compiling SwiftGodot ParticleProcessMaterial.swift
[1180/1624] Compiling SwiftGodot Path2D.swift
[1181/1624] Compiling SwiftGodot Path3D.swift
[1182/1624] Compiling SwiftGodot PathFollow2D.swift
[1183/1624] Compiling SwiftGodot PathFollow3D.swift
[1184/1624] Compiling SwiftGodot Performance.swift
[1185/1624] Compiling SwiftGodot PhysicalBone2D.swift
[1186/1624] Compiling SwiftGodot PhysicalBone3D.swift
[1187/1624] Compiling SwiftGodot PhysicalBoneSimulator3D.swift
[1188/1624] Compiling SwiftGodot PhysicalSkyMaterial.swift
[1189/1624] Compiling SwiftGodot PhysicsBody2D.swift
[1190/1624] Compiling SwiftGodot PhysicsBody3D.swift
[1191/1624] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[1242/1699] Compiling SwiftGodot NavigationServer2D.swift
[1243/1699] Compiling SwiftGodot NavigationServer3D.swift
[1244/1699] Compiling SwiftGodot NinePatchRect.swift
[1245/1699] Compiling SwiftGodot Node.swift
[1246/1699] Compiling SwiftGodot Node2D.swift
[1247/1699] Compiling SwiftGodot Node3D.swift
[1248/1699] Compiling SwiftGodot Node3DGizmo.swift
[1249/1699] Compiling SwiftGodot Noise.swift
[1250/1699] Compiling SwiftGodot NoiseTexture2D.swift
[1251/1699] Compiling SwiftGodot NoiseTexture3D.swift
[1252/1699] Compiling SwiftGodot ORMMaterial3D.swift
[1253/1699] Compiling SwiftGodot OS.swift
[1254/1699] Compiling SwiftGodot Object.swift
[1255/1699] Compiling SwiftGodot Occluder3D.swift
[1256/1699] Compiling SwiftGodot OccluderInstance3D.swift
[1257/1699] Compiling SwiftGodot OccluderPolygon2D.swift
[1258/1699] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[1259/1699] Compiling SwiftGodot OggPacketSequence.swift
[1260/1699] Compiling SwiftGodot OggPacketSequencePlayback.swift
[1261/1699] Compiling SwiftGodot OmniLight3D.swift
[1262/1699] Compiling SwiftGodot OpenXRAPIExtension.swift
[1263/1699] Compiling SwiftGodot OpenXRAction.swift
[1264/1699] Compiling SwiftGodot OpenXRActionBindingModifier.swift
[1265/1699] Compiling SwiftGodot OpenXRActionMap.swift
[1266/1699] Compiling SwiftGodot OpenXRActionSet.swift
[1292/1749] Compiling SwiftGodot PinJoint2D.swift
[1293/1749] Compiling SwiftGodot PinJoint3D.swift
[1294/1749] Compiling SwiftGodot PlaceholderCubemap.swift
[1295/1749] Compiling SwiftGodot PlaceholderCubemapArray.swift
[1296/1749] Compiling SwiftGodot PlaceholderMaterial.swift
[1297/1749] Compiling SwiftGodot PlaceholderMesh.swift
[1298/1749] Compiling SwiftGodot PlaceholderTexture2D.swift
[1299/1749] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[1300/1749] Compiling SwiftGodot PlaceholderTexture3D.swift
[1301/1749] Compiling SwiftGodot PlaceholderTextureLayered.swift
[1302/1749] Compiling SwiftGodot PlaneMesh.swift
[1303/1749] Compiling SwiftGodot PointLight2D.swift
[1304/1749] Compiling SwiftGodot PointMesh.swift
[1305/1749] Compiling SwiftGodot Polygon2D.swift
[1306/1749] Compiling SwiftGodot PolygonOccluder3D.swift
[1307/1749] Compiling SwiftGodot PolygonPathFinder.swift
[1308/1749] Compiling SwiftGodot Popup.swift
[1309/1749] Compiling SwiftGodot PopupMenu.swift
[1310/1749] Compiling SwiftGodot PopupPanel.swift
[1311/1749] Compiling SwiftGodot PortableCompressedTexture2D.swift
[1312/1749] Compiling SwiftGodot PrimitiveMesh.swift
[1313/1749] Compiling SwiftGodot PrismMesh.swift
[1314/1749] Compiling SwiftGodot ProceduralSkyMaterial.swift
[1315/1749] Compiling SwiftGodot ProgressBar.swift
[1316/1749] Compiling SwiftGodot ProjectSettings.swift
[1342/1799] Compiling SwiftGodot PropertyTweener.swift
[1343/1799] Compiling SwiftGodot QuadMesh.swift
[1344/1799] Compiling SwiftGodot QuadOccluder3D.swift
[1345/1799] Compiling SwiftGodot RDAttachmentFormat.swift
[1346/1799] Compiling SwiftGodot RDFramebufferPass.swift
[1347/1799] Compiling SwiftGodot RDPipelineColorBlendState.swift
[1348/1799] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[1349/1799] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[1350/1799] Compiling SwiftGodot RDPipelineMultisampleState.swift
[1351/1799] Compiling SwiftGodot RDPipelineRasterizationState.swift
[1352/1799] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[1353/1799] Compiling SwiftGodot RDSamplerState.swift
[1354/1799] Compiling SwiftGodot RDShaderFile.swift
[1355/1799] Compiling SwiftGodot RDShaderSPIRV.swift
[1356/1799] Compiling SwiftGodot RDShaderSource.swift
[1357/1799] Compiling SwiftGodot RDTextureFormat.swift
[1358/1799] Compiling SwiftGodot RDTextureView.swift
[1359/1799] Compiling SwiftGodot RDUniform.swift
[1360/1799] Compiling SwiftGodot RDVertexAttribute.swift
[1361/1799] Compiling SwiftGodot RandomNumberGenerator.swift
[1362/1799] Compiling SwiftGodot Range.swift
[1363/1799] Compiling SwiftGodot RayCast2D.swift
[1364/1799] Compiling SwiftGodot RayCast3D.swift
[1365/1799] Compiling SwiftGodot RectangleShape2D.swift
[1366/1799] Compiling SwiftGodot RefCounted.swift
[1392/1849] Compiling SwiftGodot ResourceImporterBMFont.swift
[1393/1849] Compiling SwiftGodot ResourceImporterBitMap.swift
[1394/1849] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
[1395/1849] Compiling SwiftGodot ResourceImporterDynamicFont.swift
[1396/1849] Compiling SwiftGodot ResourceImporterImage.swift
[1397/1849] Compiling SwiftGodot ResourceImporterImageFont.swift
[1398/1849] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
[1399/1849] Compiling SwiftGodot ResourceImporterMP3.swift
[1400/1849] Compiling SwiftGodot ResourceImporterOBJ.swift
[1401/1849] Compiling SwiftGodot ResourceImporterOggVorbis.swift
[1402/1849] Compiling SwiftGodot ResourceImporterScene.swift
[1403/1849] Compiling SwiftGodot ResourceImporterShaderFile.swift
[1404/1849] Compiling SwiftGodot ResourceImporterTexture.swift
[1405/1849] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
[1406/1849] Compiling SwiftGodot ResourceImporterWAV.swift
[1407/1849] Compiling SwiftGodot ResourceLoader.swift
[1408/1849] Compiling SwiftGodot ResourcePreloader.swift
[1409/1849] Compiling SwiftGodot ResourceSaver.swift
[1410/1849] Compiling SwiftGodot ResourceUID.swift
[1411/1849] Compiling SwiftGodot RetargetModifier3D.swift
[1412/1849] Compiling SwiftGodot RibbonTrailMesh.swift
[1413/1849] Compiling SwiftGodot RichTextEffect.swift
[1414/1849] Compiling SwiftGodot RichTextLabel.swift
[1415/1849] Compiling SwiftGodot RigidBody2D.swift
[1416/1849] Compiling SwiftGodot RigidBody3D.swift
[1442/1899] Compiling SwiftGodot RootMotionView.swift
[1443/1899] Compiling SwiftGodot SceneMultiplayer.swift
[1444/1899] Compiling SwiftGodot SceneReplicationConfig.swift
[1445/1899] Compiling SwiftGodot SceneState.swift
[1446/1899] Compiling SwiftGodot SceneTree.swift
[1447/1899] Compiling SwiftGodot SceneTreeTimer.swift
[1448/1899] Compiling SwiftGodot Script.swift
[1449/1899] Compiling SwiftGodot ScriptCreateDialog.swift
[1450/1899] Compiling SwiftGodot ScriptEditor.swift
[1451/1899] Compiling SwiftGodot ScriptEditorBase.swift
[1452/1899] Compiling SwiftGodot ScriptExtension.swift
[1453/1899] Compiling SwiftGodot ScriptLanguage.swift
[1454/1899] Compiling SwiftGodot ScriptLanguageExtension.swift
[1455/1899] Compiling SwiftGodot ScrollBar.swift
[1456/1899] Compiling SwiftGodot ScrollContainer.swift
[1457/1899] Compiling SwiftGodot SegmentShape2D.swift
[1458/1899] Compiling SwiftGodot Semaphore.swift
[1459/1899] Compiling SwiftGodot SeparationRayShape2D.swift
[1460/1899] Compiling SwiftGodot SeparationRayShape3D.swift
[1461/1899] Compiling SwiftGodot Separator.swift
[1462/1899] Compiling SwiftGodot Shader.swift
[1463/1899] Compiling SwiftGodot ShaderGlobalsOverride.swift
[1464/1899] Compiling SwiftGodot ShaderInclude.swift
[1465/1899] Compiling SwiftGodot ShaderIncludeDB.swift
[1466/1899] Compiling SwiftGodot ShaderMaterial.swift
[1467/1924] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[1468/1924] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[1469/1924] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[1470/1924] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[1471/1924] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[1472/1924] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[1473/1924] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[1474/1924] Compiling SwiftGodot PhysicsMaterial.swift
[1475/1924] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[1476/1924] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[1477/1924] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[1478/1924] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[1479/1924] Compiling SwiftGodot PhysicsServer2D.swift
[1480/1924] Compiling SwiftGodot PhysicsServer2DExtension.swift
[1481/1924] Compiling SwiftGodot PhysicsServer2DManager.swift
[1482/1924] Compiling SwiftGodot PhysicsServer3D.swift
[1483/1924] Compiling SwiftGodot PhysicsServer3DExtension.swift
[1484/1924] Compiling SwiftGodot PhysicsServer3DManager.swift
[1485/1924] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[1486/1924] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[1487/1924] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[1488/1924] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[1489/1924] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[1490/1924] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[1491/1924] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[1542/1999] Compiling SwiftGodot Shape2D.swift
[1543/1999] Compiling SwiftGodot Shape3D.swift
[1544/1999] Compiling SwiftGodot ShapeCast2D.swift
[1545/1999] Compiling SwiftGodot ShapeCast3D.swift
[1546/1999] Compiling SwiftGodot Shortcut.swift
[1547/1999] Compiling SwiftGodot Skeleton2D.swift
[1548/1999] Compiling SwiftGodot Skeleton3D.swift
[1549/1999] Compiling SwiftGodot SkeletonIK3D.swift
[1550/1999] Compiling SwiftGodot SkeletonModification2D.swift
[1551/1999] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[1552/1999] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[1553/1999] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[1554/1999] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[1555/1999] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[1556/1999] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[1557/1999] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[1558/1999] Compiling SwiftGodot SkeletonModificationStack2D.swift
[1559/1999] Compiling SwiftGodot SkeletonModifier3D.swift
[1560/1999] Compiling SwiftGodot SkeletonProfile.swift
[1561/1999] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[1562/1999] Compiling SwiftGodot Skin.swift
[1563/1999] Compiling SwiftGodot SkinReference.swift
[1564/1999] Compiling SwiftGodot Sky.swift
[1565/1999] Compiling SwiftGodot Slider.swift
[1566/1999] Compiling SwiftGodot SliderJoint3D.swift
[1592/2023] Compiling SwiftGodot AudioEffectPhaser.swift
[1593/2023] Compiling SwiftGodot AudioEffectPitchShift.swift
[1594/2023] Compiling SwiftGodot AudioEffectRecord.swift
[1595/2023] Compiling SwiftGodot AudioEffectReverb.swift
[1596/2023] Compiling SwiftGodot AudioEffectSpectrumAnalyzer.swift
[1597/2023] Compiling SwiftGodot AudioEffectSpectrumAnalyzerInstance.swift
[1598/2023] Compiling SwiftGodot AudioEffectStereoEnhance.swift
[1599/2023] Compiling SwiftGodot AudioListener2D.swift
[1600/2023] Compiling SwiftGodot AudioListener3D.swift
[1601/2023] Compiling SwiftGodot AudioSample.swift
[1602/2023] Compiling SwiftGodot AudioSamplePlayback.swift
[1603/2023] Compiling SwiftGodot AudioServer.swift
[1604/2023] Compiling SwiftGodot AudioStream.swift
[1605/2023] Compiling SwiftGodot AudioStreamGenerator.swift
[1606/2023] Compiling SwiftGodot AudioStreamGeneratorPlayback.swift
[1607/2023] Compiling SwiftGodot AudioStreamInteractive.swift
[1608/2023] Compiling SwiftGodot AudioStreamMP3.swift
[1609/2023] Compiling SwiftGodot AudioStreamMicrophone.swift
[1610/2023] Compiling SwiftGodot AudioStreamOggVorbis.swift
[1611/2023] Compiling SwiftGodot AudioStreamPlayback.swift
[1612/2023] Compiling SwiftGodot AudioStreamPlaybackInteractive.swift
[1613/2023] Compiling SwiftGodot AudioStreamPlaybackOggVorbis.swift
[1614/2023] Compiling SwiftGodot AudioStreamPlaybackPlaylist.swift
[1615/2023] Compiling SwiftGodot AudioStreamPlaybackPolyphonic.swift
[1616/2023] Compiling SwiftGodot AudioStreamPlaybackResampled.swift
[1617/2023] Compiling SwiftGodot CSGCombiner3D.swift
[1618/2023] Compiling SwiftGodot CSGCylinder3D.swift
[1619/2023] Compiling SwiftGodot CSGMesh3D.swift
[1620/2023] Compiling SwiftGodot CSGPolygon3D.swift
[1621/2023] Compiling SwiftGodot CSGPrimitive3D.swift
[1622/2023] Compiling SwiftGodot CSGShape3D.swift
[1623/2023] Compiling SwiftGodot CSGSphere3D.swift
[1624/2023] Compiling SwiftGodot CSGTorus3D.swift
[1625/2023] Compiling SwiftGodot CallbackTweener.swift
[1626/2023] Compiling SwiftGodot Camera2D.swift
[1627/2023] Compiling SwiftGodot Camera3D.swift
[1628/2023] Compiling SwiftGodot CameraAttributes.swift
[1629/2023] Compiling SwiftGodot CameraAttributesPhysical.swift
[1630/2023] Compiling SwiftGodot CameraAttributesPractical.swift
[1631/2023] Compiling SwiftGodot CameraFeed.swift
[1632/2023] Compiling SwiftGodot CameraServer.swift
[1633/2023] Compiling SwiftGodot CameraTexture.swift
[1634/2023] Compiling SwiftGodot CanvasGroup.swift
[1635/2023] Compiling SwiftGodot CanvasItem.swift
[1636/2023] Compiling SwiftGodot CanvasItemMaterial.swift
[1637/2023] Compiling SwiftGodot CanvasLayer.swift
[1638/2023] Compiling SwiftGodot CanvasModulate.swift
[1639/2023] Compiling SwiftGodot CanvasTexture.swift
[1640/2023] Compiling SwiftGodot CapsuleMesh.swift
[1641/2023] Compiling SwiftGodot CapsuleShape2D.swift
[1642/2023] Compiling SwiftGodot Basis.swift
[1643/2023] Compiling SwiftGodot Callable.swift
[1644/2023] Compiling SwiftGodot Color.swift
[1645/2023] Compiling SwiftGodot core-defs.swift
[1646/2023] Compiling SwiftGodot Dictionary.swift
[1647/2023] Compiling SwiftGodot NodePath.swift
[1648/2023] Compiling SwiftGodot PackedByteArray.swift
[1649/2023] Compiling SwiftGodot PackedColorArray.swift
[1650/2023] Compiling SwiftGodot PackedFloat32Array.swift
[1651/2023] Compiling SwiftGodot PackedFloat64Array.swift
[1652/2023] Compiling SwiftGodot PackedInt32Array.swift
[1653/2023] Compiling SwiftGodot PackedInt64Array.swift
[1654/2023] Compiling SwiftGodot PackedStringArray.swift
[1655/2023] Compiling SwiftGodot PackedVector2Array.swift
[1656/2023] Compiling SwiftGodot PackedVector3Array.swift
[1657/2023] Compiling SwiftGodot PackedVector4Array.swift
[1658/2023] Compiling SwiftGodot Plane.swift
[1659/2023] Compiling SwiftGodot Projection.swift
[1660/2023] Compiling SwiftGodot Quaternion.swift
[1661/2023] Compiling SwiftGodot Rect2.swift
[1662/2023] Compiling SwiftGodot Rect2i.swift
[1663/2023] Compiling SwiftGodot RID.swift
[1664/2023] Compiling SwiftGodot Signal.swift
[1665/2023] Compiling SwiftGodot String.swift
[1666/2023] Compiling SwiftGodot StringName.swift
[1688/2023] Compiling SwiftGodot AudioEffectLowPassFilter.swift
[1689/2023] Compiling SwiftGodot AudioEffectLowShelfFilter.swift
[1690/2023] Compiling SwiftGodot AudioEffectNotchFilter.swift
[1691/2023] Compiling SwiftGodot AudioEffectPanner.swift
[1692/2023] Emitting module SwiftGodot
[1819/2311] Compiling SwiftGodot ReferenceRect.swift
[1820/2311] Compiling SwiftGodot ReflectionProbe.swift
[1821/2311] Compiling SwiftGodot RegEx.swift
[1822/2311] Compiling SwiftGodot RegExMatch.swift
[1823/2311] Compiling SwiftGodot RemoteTransform2D.swift
[1824/2311] Compiling SwiftGodot RemoteTransform3D.swift
[1825/2311] Compiling SwiftGodot RenderData.swift
[1826/2311] Compiling SwiftGodot RenderDataExtension.swift
[1827/2311] Compiling SwiftGodot RenderDataRD.swift
[1828/2311] Compiling SwiftGodot RenderSceneBuffers.swift
[1829/2311] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
[1830/2311] Compiling SwiftGodot RenderSceneBuffersExtension.swift
[1831/2311] Compiling SwiftGodot RenderSceneBuffersRD.swift
[1832/2311] Compiling SwiftGodot RenderSceneData.swift
[1833/2311] Compiling SwiftGodot RenderSceneDataExtension.swift
[1834/2311] Compiling SwiftGodot RenderSceneDataRD.swift
[1835/2311] Compiling SwiftGodot RenderingDevice.swift
[1836/2311] Compiling SwiftGodot RenderingNativeSurface.swift
[1837/2311] Compiling SwiftGodot RenderingNativeSurfaceApple.swift
[1838/2311] Compiling SwiftGodot RenderingNativeSurfaceVulkan.swift
[1839/2311] Compiling SwiftGodot RenderingServer.swift
[1840/2311] Compiling SwiftGodot Resource.swift
[1841/2311] Compiling SwiftGodot ResourceFormatLoader.swift
[1842/2311] Compiling SwiftGodot ResourceFormatSaver.swift
[1843/2311] Compiling SwiftGodot ResourceImporter.swift
[1894/2383] Compiling SwiftGodot SoftBody3D.swift
[1895/2383] Compiling SwiftGodot SphereMesh.swift
[1896/2383] Compiling SwiftGodot SphereOccluder3D.swift
[1897/2383] Compiling SwiftGodot SphereShape3D.swift
[1898/2383] Compiling SwiftGodot SpinBox.swift
[1899/2383] Compiling SwiftGodot SplitContainer.swift
[1900/2383] Compiling SwiftGodot SpotLight3D.swift
[1901/2383] Compiling SwiftGodot SpringArm3D.swift
[1902/2383] Compiling SwiftGodot SpringBoneCollision3D.swift
[1903/2383] Compiling SwiftGodot SpringBoneCollisionCapsule3D.swift
[1904/2383] Compiling SwiftGodot SpringBoneCollisionPlane3D.swift
[1905/2383] Compiling SwiftGodot SpringBoneCollisionSphere3D.swift
[1906/2383] Compiling SwiftGodot SpringBoneSimulator3D.swift
[1907/2383] Compiling SwiftGodot Sprite2D.swift
[1908/2383] Compiling SwiftGodot Sprite3D.swift
[1909/2383] Compiling SwiftGodot SpriteBase3D.swift
[1910/2383] Compiling SwiftGodot SpriteFrames.swift
[1911/2383] Compiling SwiftGodot StandardMaterial3D.swift
[1912/2383] Compiling SwiftGodot StaticBody2D.swift
[1913/2383] Compiling SwiftGodot StaticBody3D.swift
[1914/2383] Compiling SwiftGodot StatusIndicator.swift
[1915/2383] Compiling SwiftGodot StreamPeer.swift
[1916/2383] Compiling SwiftGodot StreamPeerBuffer.swift
[1917/2383] Compiling SwiftGodot StreamPeerExtension.swift
[1918/2383] Compiling SwiftGodot StreamPeerGZIP.swift
[1919/2407] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[1920/2407] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[1921/2407] Compiling SwiftGodot VisualShaderNodeRemap.swift
[1922/2407] Compiling SwiftGodot VisualShaderNodeReroute.swift
[1923/2407] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[1924/2407] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[1925/2407] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[1926/2407] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[1927/2407] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[1928/2407] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[1929/2407] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[1930/2407] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[1931/2407] Compiling SwiftGodot VisualShaderNodeStep.swift
[1932/2407] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[1933/2407] Compiling SwiftGodot VisualShaderNodeTexture.swift
[1934/2407] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[1935/2407] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[1936/2407] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[1937/2407] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[1938/2407] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[1939/2407] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[1940/2407] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[1941/2407] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[1942/2407] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[1967/2431] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[1968/2431] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[1969/2431] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[1970/2431] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[1971/2431] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[1972/2431] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[1973/2431] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[1974/2431] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[1975/2431] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[1976/2431] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[1977/2431] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[1978/2431] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[1979/2431] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[1980/2431] Compiling SwiftGodot VisualShaderNodeVarying.swift
[1981/2431] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[1982/2431] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[1983/2431] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[1984/2431] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[1985/2431] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[1986/2431] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[1987/2431] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[1988/2431] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[1989/2431] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[1990/2431] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[1991/2431] Compiling SwiftGodot VisualShaderNodeInput.swift
[1992/2431] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[1993/2431] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[1994/2431] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[1995/2431] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[1996/2431] Compiling SwiftGodot VisualShaderNodeIs.swift
[1997/2431] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[1998/2431] Compiling SwiftGodot VisualShaderNodeMix.swift
[1999/2431] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[2000/2431] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[2001/2431] Compiling SwiftGodot VisualShaderNodeOutput.swift
[2002/2431] Compiling SwiftGodot VisualShaderNodeParameter.swift
[2003/2431] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[2004/2431] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[2005/2431] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[2006/2431] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[2007/2431] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[2008/2431] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[2009/2431] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[2010/2431] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[2011/2431] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[2012/2431] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[2013/2431] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[2014/2431] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[2063/2431] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[2064/2431] Compiling SwiftGodot VisualShaderNodeComment.swift
[2065/2431] Compiling SwiftGodot VisualShaderNodeCompare.swift
[2066/2431] Compiling SwiftGodot VisualShaderNodeConstant.swift
[2067/2431] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[2068/2431] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[2069/2431] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[2070/2431] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[2071/2431] Compiling SwiftGodot VisualShaderNodeCustom.swift
[2072/2431] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[2073/2431] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[2074/2431] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[2075/2431] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[2076/2431] Compiling SwiftGodot VisualShaderNodeExpression.swift
[2077/2431] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[2078/2431] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[2079/2431] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[2080/2431] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[2081/2431] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[2082/2431] Compiling SwiftGodot VisualShaderNodeFrame.swift
[2083/2431] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[2084/2431] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[2085/2431] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[2086/2431] Compiling SwiftGodot VisualShaderNodeIf.swift
[2136/2431] Compiling SwiftGodot VSlider.swift
[2137/2431] Compiling SwiftGodot VSplitContainer.swift
[2138/2431] Compiling SwiftGodot VehicleBody3D.swift
[2139/2431] Compiling SwiftGodot VehicleWheel3D.swift
[2140/2431] Compiling SwiftGodot VideoStream.swift
[2141/2431] Compiling SwiftGodot VideoStreamPlayback.swift
[2142/2431] Compiling SwiftGodot VideoStreamPlayer.swift
[2143/2431] Compiling SwiftGodot VideoStreamTheora.swift
[2144/2431] Compiling SwiftGodot Viewport.swift
[2145/2431] Compiling SwiftGodot ViewportTexture.swift
[2146/2431] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[2147/2431] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[2148/2431] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[2149/2431] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[2150/2431] Compiling SwiftGodot VisualInstance3D.swift
[2151/2431] Compiling SwiftGodot VisualShader.swift
[2152/2431] Compiling SwiftGodot VisualShaderNode.swift
[2153/2431] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[2154/2431] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[2155/2431] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[2156/2431] Compiling SwiftGodot VisualShaderNodeClamp.swift
[2157/2431] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[2158/2431] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[2159/2431] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[2184/2431] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[2185/2431] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[2186/2431] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[2187/2431] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[2188/2431] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[2189/2431] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[2190/2431] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[2191/2431] Compiling SwiftGodot VoxelGI.swift
[2192/2431] Compiling SwiftGodot VoxelGIData.swift
[2193/2431] Compiling SwiftGodot WeakRef.swift
[2194/2431] Compiling SwiftGodot WebRTCDataChannel.swift
[2195/2431] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[2196/2431] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[2197/2431] Compiling SwiftGodot WebRTCPeerConnection.swift
[2198/2431] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[2199/2431] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[2200/2431] Compiling SwiftGodot WebSocketPeer.swift
[2201/2431] Compiling SwiftGodot WebXRInterface.swift
[2202/2431] Compiling SwiftGodot Window.swift
[2203/2431] Compiling SwiftGodot WorkerThreadPool.swift
[2204/2431] Compiling SwiftGodot World2D.swift
[2205/2431] Compiling SwiftGodot World3D.swift
[2206/2431] Compiling SwiftGodot WorldBoundaryShape2D.swift
[2207/2431] Compiling SwiftGodot WorldBoundaryShape3D.swift
[2208/2431] Compiling SwiftGodot WorldEnvironment.swift
[2209/2431] Compiling SwiftGodot X509Certificate.swift
[2210/2431] Compiling SwiftGodot XMLParser.swift
[2211/2431] Compiling SwiftGodot XRAnchor3D.swift
[2212/2431] Compiling SwiftGodot XRBodyModifier3D.swift
[2213/2431] Compiling SwiftGodot XRBodyTracker.swift
[2214/2431] Compiling SwiftGodot XRCamera3D.swift
[2215/2431] Compiling SwiftGodot XRController3D.swift
[2216/2431] Compiling SwiftGodot XRControllerTracker.swift
[2217/2431] Compiling SwiftGodot XRFaceModifier3D.swift
[2218/2431] Compiling SwiftGodot XRFaceTracker.swift
[2219/2431] Compiling SwiftGodot XRHandModifier3D.swift
[2220/2431] Compiling SwiftGodot XRHandTracker.swift
[2221/2431] Compiling SwiftGodot XRInterface.swift
[2222/2431] Compiling SwiftGodot XRInterfaceExtension.swift
[2223/2431] Compiling SwiftGodot XRNode3D.swift
[2224/2431] Compiling SwiftGodot XROrigin3D.swift
[2225/2431] Compiling SwiftGodot XRPose.swift
[2226/2431] Compiling SwiftGodot XRPositionalTracker.swift
[2227/2431] Compiling SwiftGodot XRServer.swift
[2228/2431] Compiling SwiftGodot XRTracker.swift
[2229/2431] Compiling SwiftGodot XRVRS.swift
[2230/2431] Compiling SwiftGodot ZIPPacker.swift
[2231/2431] Compiling SwiftGodot ZIPReader.swift
[2280/2431] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[2281/2431] Compiling SwiftGodot TileSetSource.swift
[2282/2431] Compiling SwiftGodot Time.swift
[2283/2431] Compiling SwiftGodot Timer.swift
[2284/2431] Compiling SwiftGodot TorusMesh.swift
[2285/2431] Compiling SwiftGodot TouchScreenButton.swift
[2286/2431] Compiling SwiftGodot Translation.swift
[2287/2431] Compiling SwiftGodot TranslationDomain.swift
[2288/2431] Compiling SwiftGodot TranslationServer.swift
[2289/2431] Compiling SwiftGodot Tree.swift
[2290/2431] Compiling SwiftGodot TreeItem.swift
[2291/2431] Compiling SwiftGodot TriangleMesh.swift
[2292/2431] Compiling SwiftGodot TubeTrailMesh.swift
[2293/2431] Compiling SwiftGodot Tween.swift
[2294/2431] Compiling SwiftGodot Tweener.swift
[2295/2431] Compiling SwiftGodot UDPServer.swift
[2296/2431] Compiling SwiftGodot UPNP.swift
[2297/2431] Compiling SwiftGodot UPNPDevice.swift
[2298/2431] Compiling SwiftGodot UndoRedo.swift
[2299/2431] Compiling SwiftGodot UniformSetCacheRD.swift
[2300/2431] Compiling SwiftGodot VBoxContainer.swift
[2301/2431] Compiling SwiftGodot VFlowContainer.swift
[2302/2431] Compiling SwiftGodot VScrollBar.swift
[2303/2431] Compiling SwiftGodot VSeparator.swift
[2328/2431] Compiling SwiftGodot TextServerManager.swift
[2329/2431] Compiling SwiftGodot Texture.swift
[2330/2431] Compiling SwiftGodot Texture2D.swift
[2331/2431] Compiling SwiftGodot Texture2DArray.swift
[2332/2431] Compiling SwiftGodot Texture2DArrayRD.swift
[2333/2431] Compiling SwiftGodot Texture2DRD.swift
[2334/2431] Compiling SwiftGodot Texture3D.swift
[2335/2431] Compiling SwiftGodot Texture3DRD.swift
[2336/2431] Compiling SwiftGodot TextureButton.swift
[2337/2431] Compiling SwiftGodot TextureCubemapArrayRD.swift
[2338/2431] Compiling SwiftGodot TextureCubemapRD.swift
[2339/2431] Compiling SwiftGodot TextureLayered.swift
[2340/2431] Compiling SwiftGodot TextureLayeredRD.swift
[2341/2431] Compiling SwiftGodot TextureProgressBar.swift
[2342/2431] Compiling SwiftGodot TextureRect.swift
[2343/2431] Compiling SwiftGodot Theme.swift
[2344/2431] Compiling SwiftGodot ThemeDB.swift
[2345/2431] Compiling SwiftGodot Thread.swift
[2346/2431] Compiling SwiftGodot TileData.swift
[2347/2431] Compiling SwiftGodot TileMap.swift
[2348/2431] Compiling SwiftGodot TileMapLayer.swift
[2349/2431] Compiling SwiftGodot TileMapPattern.swift
[2350/2431] Compiling SwiftGodot TileSet.swift
[2351/2431] Compiling SwiftGodot TileSetAtlasSource.swift
[2376/2431] Compiling SwiftGodot StreamPeerTCP.swift
[2377/2431] Compiling SwiftGodot StreamPeerTLS.swift
[2378/2431] Compiling SwiftGodot StyleBox.swift
[2379/2431] Compiling SwiftGodot StyleBoxEmpty.swift
[2380/2431] Compiling SwiftGodot StyleBoxFlat.swift
[2381/2431] Compiling SwiftGodot StyleBoxLine.swift
[2382/2431] Compiling SwiftGodot StyleBoxTexture.swift
[2383/2431] Compiling SwiftGodot SubViewport.swift
[2384/2431] Compiling SwiftGodot SubViewportContainer.swift
[2385/2431] Compiling SwiftGodot SubtweenTweener.swift
[2386/2431] Compiling SwiftGodot SurfaceTool.swift
[2387/2431] Compiling SwiftGodot SyntaxHighlighter.swift
[2388/2431] Compiling SwiftGodot SystemFont.swift
[2389/2431] Compiling SwiftGodot TCPServer.swift
[2390/2431] Compiling SwiftGodot TLSOptions.swift
[2391/2431] Compiling SwiftGodot TabBar.swift
[2392/2431] Compiling SwiftGodot TabContainer.swift
[2393/2431] Compiling SwiftGodot TextEdit.swift
[2394/2431] Compiling SwiftGodot TextLine.swift
[2395/2431] Compiling SwiftGodot TextMesh.swift
[2396/2431] Compiling SwiftGodot TextParagraph.swift
[2397/2431] Compiling SwiftGodot TextServer.swift
[2398/2431] Compiling SwiftGodot TextServerAdvanced.swift
[2399/2431] Compiling SwiftGodot TextServerDummy.swift
[2400/2431] Compiling SwiftGodot TextServerExtension.swift
[2425/2431] Write Objects.LinkFileList
[2427/2446] Emitting module ManualExtension
[2428/2446] Compiling ManualExtension ManualExtension.swift
[2428/2446] Write Objects.LinkFileList
[2430/2456] Emitting module SimpleExtension
[2431/2456] Compiling SimpleExtension EntryPoint.generated.swift
[2432/2456] Compiling SimpleExtension SimpleExtension.swift
[2432/2456] Write Objects.LinkFileList
[2433/2456] Linking libSwiftGodot.dylib
[2434/2456] Linking libManualExtension.dylib
[2435/2456] Linking libSimpleExtension.dylib
[2437/2456] Compiling SwiftGodotTestability GodotTestHost.swift
[2438/2456] Emitting module SwiftGodotTestability
[2439/2456] Compiling SwiftGodotTestability GodotTestHost.swift
[2440/2456] Compiling SwiftGodotTestability SimpleTestHost.swift
[2441/2456] Compiling SwiftGodotTestability TestHost.swift
[2442/2456] Compiling SwiftGodotTestability EmbeddingController.swift
[2443/2456] Compiling SwiftGodotTestability SilentTestRun.swift
[2444/2456] Compiling SwiftGodotTestability EmbeddedTestCase.swift
[2445/2456] Compiling SwiftGodotTestability EmbeddedTestCaseSuite.swift
[2446/2456] Compiling SwiftGodotTestability GodotTestCase.swift
[2447/2456] Compiling SwiftGodotTestability GodotRuntime.swift
/Users/admin/builder/spi-builder-workspace/Sources/GDExtension/include/gdextension_interface.h:429:2: error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
427 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE,
428 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16,
429 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32,
| `- error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
430 | } GDExtensionClassMethodArgumentMetadata;
431 |
/Users/admin/builder/spi-builder-workspace/.build/artifacts/spi-builder-workspace/libgodot_tests/libgodot.xcframework/macos-arm64_x86_64/Headers/gdextension_interface.h:378:9: note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32'
376 | } GDExtensionClassMethodFlags;
377 |
378 | typedef enum {
| `- note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32'
379 | GDEXTENSION_METHOD_ARGUMENT_METADATA_NONE,
380 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_INT8,
/Users/admin/builder/spi-builder-workspace/Sources/GDExtension/include/gdextension_interface.h:428:2: error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
426 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_FLOAT,
427 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE,
428 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16,
| `- error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
429 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32,
430 | } GDExtensionClassMethodArgumentMetadata;
/Users/admin/builder/spi-builder-workspace/.build/artifacts/spi-builder-workspace/libgodot_tests/libgodot.xcframework/macos-arm64_x86_64/Headers/gdextension_interface.h:378:9: note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16'
376 | } GDExtensionClassMethodFlags;
377 |
378 | typedef enum {
| `- note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16'
379 | GDEXTENSION_METHOD_ARGUMENT_METADATA_NONE,
380 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_INT8,
[2449/2456] Compiling SwiftGodotTestability TestHost.swift
[2450/2456] Compiling SwiftGodotTestability SimpleTestHost.swift
[2451/2456] Compiling SwiftGodotTestability SilentTestRun.swift
[2452/2456] Compiling SwiftGodotTestability EmbeddedTestCaseSuite.swift
[2453/2456] Compiling SwiftGodotTestability EmbeddingController.swift
[2454/2456] Compiling SwiftGodotTestability GodotTestCase.swift
[2455/2456] Compiling SwiftGodotTestability EmbeddedTestCase.swift
[2456/2456] Emitting module SwiftGodotTestability
BUILD FAILURE 6.1 macosSpm