Build Information
Failed to build SwiftGodot, reference 0.60.1 (20d2d7
), with Swift 6.1 for macOS (SPM) on 26 Apr 2025 20:38:28 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
| |- 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
[250/262] 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 = "UnsafeRawPointer?.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:744:18: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
740 |
741 | extension Generator {
742 | func generateCtorPointers (_ p: Printer) {
| `- note: add '@MainActor' to make instance method 'generateCtorPointers' part of global actor 'MainActor'
743 | p ("var godotFrameworkCtors = [")
744 | for x in classMap.keys.sorted() {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
745 | p (" \"\(x)\": \(x).self, //(nativeHandle:),")
746 | }
/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
[251/262] 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 = "UnsafeRawPointer?.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:744:18: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
740 |
741 | extension Generator {
742 | func generateCtorPointers (_ p: Printer) {
| `- note: add '@MainActor' to make instance method 'generateCtorPointers' part of global actor 'MainActor'
743 | p ("var godotFrameworkCtors = [")
744 | for x in classMap.keys.sorted() {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
745 | p (" \"\(x)\": \(x).self, //(nativeHandle:),")
746 | }
/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
[252/262] 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 | }
[253/262] Compiling Generator UnsafePointerHelpers.swift
[254/262] Compiling Generator UtilityGen.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/UtilityGen.swift:12: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
10 |
11 | func generateUtility(values: [JGodotUtilityFunction], outputDir: String?) async {
12 | let p = await PrinterFactory.shared.initPrinter("utility", 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
13 | defer {
14 | if let outputDir {
/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
[255/262] Compiling Generator TypeHelpers.swift
/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
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:64:28: error: main actor-isolated var 'globalEnums' can not be referenced from a nonisolated context
43 | /// enum value, or nil if it can not be found.
44 | /// Example type: "ArrowDirection", value: "0" would return ".up"
45 | func mapEnumValue (enumDef: String, value: String) -> String? {
| `- note: add '@MainActor' to make global function 'mapEnumValue(enumDef:value:)' part of global actor 'MainActor'
46 | func findEnumMatch (element: JGodotGlobalEnumElement) -> String? {
47 | let enumCasePrefix = element.values.commonPrefix()
:
62 | }
63 | let t = enumDef.dropFirst(6)
64 | if let globalEnumDef = globalEnums [String (t)] {
| `- error: main actor-isolated var 'globalEnums' can not be referenced from a nonisolated context
65 | return findEnumMatch(element: globalEnumDef)
66 | }
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:88:5: note: var declared here
86 | }
87 |
88 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: var declared here
89 |
90 | // Maps from a the class name to its definition
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:73:19: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
43 | /// enum value, or nil if it can not be found.
44 | /// Example type: "ArrowDirection", value: "0" would return ".up"
45 | func mapEnumValue (enumDef: String, value: String) -> String? {
| `- note: add '@MainActor' to make global function 'mapEnumValue(enumDef:value:)' part of global actor 'MainActor'
46 | func findEnumMatch (element: JGodotGlobalEnumElement) -> String? {
47 | let enumCasePrefix = element.values.commonPrefix()
:
71 | let type = t [t.startIndex..<p]
72 | let enumt = t [t.index(p, offsetBy: 1)...]
73 | guard let x = classMap [String (type)] else {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
74 | print ("WARNING: Enum, could not find type \(type) for \(enumDef)")
75 | 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/TypeHelpers.swift:355:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
247 | ///
248 | ///
249 | func getGodotType (_ t: TypeWithMeta?, kind: ArgumentKind = .classes) -> String {
| `- note: add '@MainActor' to make global function 'getGodotType(_:kind:)' part of global actor 'MainActor'
250 | guard let t else {
251 | return ""
:
353 | let nested = SimpleType(type: nestedTypeName, meta: nil)
354 |
355 | if classMap [nestedTypeName] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
356 | return "TypedArray<\(getGodotType (nested))?>"
357 | } 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/TypeHelpers.swift:373:22: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
370 | /// containing the Swift-type that is used to store this, and a suitable initialization
371 | /// value for it.
372 | func getBuiltinStorage (_ name: String, asComputedProperty: Bool) -> (String, String) {
| `- note: add '@MainActor' to make global function 'getBuiltinStorage(_:asComputedProperty:)' part of global actor 'MainActor'
373 | guard let size = builtinSizes [name] else {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
374 | fatalError()
375 | }
/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 {
[256/262] 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
[257/262] 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
[258/262] 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
[259/262] 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
[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 sources
[5/82] Copying libgodot.dylib
[6/82] Write sources
[21/82] Copying extension_api.json
[21/82] Write sources
[21/82] Copying extension_api.json
[21/82] Write sources
[33/82] Write Generator-entitlement.plist
[33/82] Write sources
[34/82] Write Generator-tool-entitlement.plist
[34/82] Write sources
[45/82] Write EntryPointGenerator-tool-entitlement.plist
[46/82] Write sources
[47/82] Write EntryPointGenerator-entitlement.plist
[47/82] Write sources
[51/82] Compiling _SwiftSyntaxCShims dummy.c
[53/82] Write swift-version-2F0A5646E1D333AE.txt
[54/82] Compiling GDExtension GDExtensionSupport.c
[57/94] 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/94] 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/94] 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
[60/94] 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
[61/94] 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] 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
[63/164] Emitting module ExtensionApiJson
[64/164] Compiling ExtensionApiJson ExtensionApiJson.swift
[65/164] Compiling ExtensionApiJson resource_bundle_accessor.swift
[66/164] Compiling ExtensionApiJson ExtensionApiJson.swift
[67/164] Emitting module ExtensionApiJson
[68/164] Compiling ExtensionApiJson resource_bundle_accessor.swift
[69/164] Emitting module ArgumentParserToolInfo
[70/164] Compiling ArgumentParserToolInfo ToolInfo.swift
[71/203] Compiling ArgumentParser NameSpecification.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
[72/203] Compiling ArgumentParser Option.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
[73/203] Compiling ArgumentParser OptionGroup.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
[74/203] Compiling ArgumentParser AsyncParsableCommand.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
[75/203] Compiling ArgumentParser ArgumentHelp.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
[76/203] Compiling ArgumentParser ArgumentVisibility.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/203] Compiling ArgumentParser CompletionKind.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/203] Compiling ArgumentParser Errors.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/222] 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
[80/223] 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
[81/223] 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
[82/223] 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
[83/223] 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/223] Emitting module EntryPointGenerator
[85/223] Compiling SwiftOperators SyntaxSynthesis.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
[86/223] 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
[87/223] 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
[88/223] 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
[89/223] 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
[90/223] 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
<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/223] Compiling ExtensionApi ApiJsonModel+Extra.swift
[92/223] 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 |
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 SwiftSyntax600 Empty.swift
[4/14] Compiling SwiftSyntax509 Empty.swift
[5/14] Emitting module SwiftSyntax509
[6/14] Emitting module SwiftSyntax510
[7/14] Compiling SwiftSyntax510 Empty.swift
[8/14] Emitting module SwiftSyntax600
[9/79] Emitting module ExtensionApi
[10/79] Compiling ExtensionApi ApiJsonModel+Extra.swift
[11/79] Compiling ExtensionApi ApiJsonModel.swift
[12/79] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[13/79] Compiling SwiftSyntax SyntaxChildren.swift
[14/79] Compiling SwiftSyntax SyntaxCollection.swift
[15/79] Compiling SwiftSyntax SyntaxHashable.swift
[16/79] Compiling SwiftSyntax SyntaxIdentifier.swift
[17/79] Compiling SwiftSyntax SyntaxNodeFactory.swift
[18/79] Compiling SwiftSyntax SyntaxNodeStructure.swift
[19/86] Compiling SwiftSyntax Identifier.swift
[20/86] Compiling SwiftSyntax MemoryLayout.swift
[21/86] Compiling SwiftSyntax MissingNodeInitializers.swift
[22/86] Compiling SwiftSyntax RawSyntax.swift
[23/86] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[24/86] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[25/86] Compiling SwiftSyntax RawSyntaxTokenView.swift
[26/86] Compiling SwiftSyntax SourceEdit.swift
[27/86] Compiling SwiftSyntax SourceLength.swift
[28/86] Compiling SwiftSyntax SourceLocation.swift
[29/86] Compiling SwiftSyntax SourcePresence.swift
[30/86] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[31/86] Compiling SwiftSyntax Syntax.swift
[32/86] Compiling SwiftSyntax SyntaxArena.swift
[33/86] Compiling SwiftSyntax Tokens.swift
[34/86] Compiling SwiftSyntax TriviaPieces.swift
[35/86] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[36/86] Compiling SwiftSyntax RawSyntaxNodesC.swift
[37/86] Compiling SwiftSyntax RawSyntaxNodesD.swift
[38/86] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[39/86] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[40/86] Emitting module SwiftSyntax
[41/86] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[42/86] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[43/86] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[44/86] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[45/86] Compiling SwiftSyntax RawSyntaxValidation.swift
[46/86] Compiling SwiftSyntax SyntaxNodesAB.swift
[47/86] Compiling SwiftSyntax SyntaxNodesC.swift
[48/86] Compiling SwiftSyntax SyntaxCollections.swift
[49/86] Compiling SwiftSyntax SyntaxEnum.swift
[50/86] Compiling SwiftSyntax SyntaxKind.swift
[51/86] Compiling SwiftSyntax SyntaxRewriter.swift
[52/86] Compiling SwiftSyntax SyntaxTraits.swift
[53/86] Compiling SwiftSyntax SyntaxVisitor.swift
[54/86] Compiling SwiftSyntax TokenKind.swift
[55/86] Compiling SwiftSyntax SyntaxNodesD.swift
[56/86] Compiling SwiftSyntax SyntaxNodesEF.swift
[57/86] Compiling SwiftSyntax SyntaxNodesGHI.swift
[58/86] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[59/86] Compiling SwiftSyntax SyntaxNodesOP.swift
[60/86] Compiling SwiftSyntax SyntaxNodesQRS.swift
[61/86] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[62/86] Compiling SwiftSyntax Utils.swift
[63/86] Compiling SwiftSyntax ChildNameForKeyPath.swift
[64/86] Compiling SwiftSyntax Keyword.swift
[65/86] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[66/86] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[67/86] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[68/86] Compiling SwiftSyntax SyntaxBaseNodes.swift
[69/86] Compiling SwiftSyntax AbsolutePosition.swift
[70/86] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[71/86] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[72/86] Compiling SwiftSyntax Assert.swift
[73/86] Compiling SwiftSyntax BumpPtrAllocator.swift
[74/86] Compiling SwiftSyntax CommonAncestor.swift
[75/86] Compiling SwiftSyntax Convenience.swift
[76/86] Compiling SwiftSyntax CustomTraits.swift
[77/86] Compiling SwiftSyntax SyntaxProtocol.swift
[78/86] Compiling SwiftSyntax SyntaxText.swift
[79/86] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[80/86] Compiling SwiftSyntax TokenDiagnostic.swift
[81/86] Compiling SwiftSyntax TokenSequence.swift
[82/86] Compiling SwiftSyntax TokenSyntax.swift
[83/86] Compiling SwiftSyntax Trivia.swift
[84/144] Compiling SwiftDiagnostics Message.swift
[85/145] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[86/145] Compiling SwiftBasicFormat Syntax+Extensions.swift
[87/145] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[88/145] Compiling SwiftDiagnostics Note.swift
[89/145] Compiling SwiftBasicFormat InferIndentation.swift
[90/145] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[91/145] Compiling SwiftDiagnostics Convenience.swift
[92/145] Compiling SwiftDiagnostics Diagnostic.swift
[93/145] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[94/145] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[95/145] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[96/145] Compiling SwiftDiagnostics FixIt.swift
[97/145] Emitting module SwiftDiagnostics
[98/145] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[99/145] Compiling SwiftBasicFormat BasicFormat.swift
[100/145] Emitting module SwiftBasicFormat
[101/145] Compiling SwiftParser TokenConsumer.swift
[102/145] Compiling SwiftParser TokenPrecedence.swift
[103/145] Compiling SwiftParser TokenSpec.swift
[104/145] Compiling SwiftParser TokenSpecSet.swift
[105/145] Compiling SwiftParser StringLiterals.swift
[106/145] Compiling SwiftParser SwiftParserCompatibility.swift
[107/145] Compiling SwiftParser SwiftVersion.swift
[108/145] Compiling SwiftParser SyntaxUtils.swift
[109/145] Compiling SwiftParser TopLevel.swift
[110/145] Compiling SwiftParser TriviaParser.swift
[111/145] Compiling SwiftParser Types.swift
[112/145] Compiling SwiftParser ExperimentalFeatures.swift
[113/149] Compiling SwiftParser Nominals.swift
[114/149] Compiling SwiftParser Parameters.swift
[115/149] Compiling SwiftParser ParseSourceFile.swift
[116/149] Compiling SwiftParser Parser.swift
[117/149] Compiling SwiftParser Patterns.swift
[118/149] Compiling SwiftParser Recovery.swift
[119/149] Compiling SwiftParser Specifiers.swift
[120/149] Compiling SwiftParser Statements.swift
[121/149] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[122/149] Emitting module SwiftParser
[123/149] Compiling SwiftParser UnicodeScalarExtensions.swift
[124/149] Compiling SwiftParser Lookahead.swift
[125/149] Compiling SwiftParser LoopProgressCondition.swift
[126/149] Compiling SwiftParser Modifiers.swift
[127/149] Compiling SwiftParser Names.swift
[128/149] Compiling SwiftParser Directives.swift
[129/149] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[130/149] Compiling SwiftParser Expressions.swift
[131/149] Compiling SwiftParser IncrementalParseTransition.swift
[132/149] Compiling SwiftParser IsValidIdentifier.swift
[133/149] Compiling SwiftParser Cursor.swift
[134/149] Compiling SwiftParser Lexeme.swift
[135/149] Compiling SwiftParser LexemeSequence.swift
[136/149] Compiling SwiftParser Lexer.swift
[137/149] Compiling SwiftParser RegexLiteralLexer.swift
[138/149] Compiling SwiftParser Attributes.swift
[139/149] Compiling SwiftParser Availability.swift
[140/149] Compiling SwiftParser CharacterInfo.swift
[141/149] Compiling SwiftParser CollectionNodes+Parsable.swift
[142/149] Compiling SwiftParser Declarations.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 SyntaxKindNameForDiagnostics.swift
[148/162] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[149/163] Compiling SwiftParserDiagnostics PresenceUtils.swift
[150/163] Compiling SwiftParserDiagnostics Utils.swift
[151/163] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[152/163] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[153/163] Compiling SwiftParserDiagnostics MissingNodesError.swift
[154/163] Compiling SwiftParserDiagnostics MissingTokenError.swift
[155/163] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[156/163] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[157/163] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[158/163] Emitting module SwiftParserDiagnostics
[159/163] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[160/163] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[161/178] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[162/179] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[163/179] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[164/179] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[165/179] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[166/179] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[167/179] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[168/179] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[169/179] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[170/179] Compiling SwiftSyntaxBuilder Indenter.swift
[171/179] Compiling SwiftSyntaxBuilder ListBuilder.swift
[172/179] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[173/179] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[174/179] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[175/179] Emitting module SwiftSyntaxBuilder
[176/179] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[177/193] Compiling Generator UtilityGen.swift
[178/193] Compiling Generator Printer.swift
[179/193] Compiling Generator TypeHelpers.swift
[180/193] Compiling Generator DocModel.swift
[181/193] Compiling Generator Enums.swift
[182/193] Compiling Generator UnsafePointerHelpers.swift
[183/193] Compiling Generator StringOperations.swift
[184/194] Compiling Generator ClassGen.swift
[185/194] Compiling Generator Data.swift
[186/194] Compiling Generator MethodGen.swift
[187/194] Compiling Generator NativeStructures.swift
[188/194] Compiling Generator main.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 InputOrigin.swift
[199/239] Compiling ArgumentParser Name.swift
[200/239] Compiling ArgumentParser Parsed.swift
[201/239] Compiling ArgumentParser ParsedValues.swift
[202/243] Emitting module ArgumentParser
[203/243] Compiling ArgumentParser NameSpecification.swift
[204/243] Compiling ArgumentParser Option.swift
[205/243] Compiling ArgumentParser OptionGroup.swift
[206/243] Compiling ArgumentParser AsyncParsableCommand.swift
[207/243] Compiling ArgumentParser ParsableArguments.swift
[208/243] Compiling ArgumentParser ParsableArgumentsValidation.swift
[209/243] Compiling ArgumentParser ParsableCommand.swift
[210/243] Compiling ArgumentParser ArgumentDecoder.swift
[211/243] Compiling ArgumentParser BashCompletionsGenerator.swift
[212/243] Compiling ArgumentParser CompletionsGenerator.swift
[213/243] Compiling ArgumentParser FishCompletionsGenerator.swift
[214/243] Compiling ArgumentParser ZshCompletionsGenerator.swift
[215/243] Compiling ArgumentParser Argument.swift
[216/243] Compiling ArgumentParser CommandConfiguration.swift
[217/243] Compiling ArgumentParser CommandGroup.swift
[218/243] Compiling ArgumentParser EnumerableFlag.swift
[219/243] Compiling ArgumentParser ExpressibleByArgument.swift
[220/243] Compiling ArgumentParser Platform.swift
[221/243] Compiling ArgumentParser SequenceExtensions.swift
[222/243] Compiling ArgumentParser StringExtensions.swift
[223/243] Compiling ArgumentParser Tree.swift
[224/243] Compiling ArgumentParser ParserError.swift
[225/243] Compiling ArgumentParser SplitArguments.swift
[226/243] Compiling ArgumentParser DumpHelpGenerator.swift
[227/243] Compiling ArgumentParser HelpCommand.swift
[228/243] Compiling ArgumentParser HelpGenerator.swift
[229/243] Compiling ArgumentParser MessageInfo.swift
[230/243] Compiling ArgumentParser UsageGenerator.swift
[231/243] Compiling ArgumentParser CollectionExtensions.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 ArgumentDefinition.swift
[238/243] Compiling ArgumentParser ArgumentSet.swift
[239/243] Compiling ArgumentParser CommandParser.swift
[240/243] Compiling ArgumentParser InputKey.swift
[241/246] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[242/246] Compiling EntryPointGenerator EntryPointGenerator.swift
[243/246] Emitting module EntryPointGenerator
[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 SwiftSyntax509 Empty.swift
[9/48] Compiling SwiftSyntax600 Empty.swift
[10/48] Emitting module SwiftSyntax509
[11/48] Compiling SwiftSyntax510 Empty.swift
[12/48] Emitting module SwiftSyntax510
[13/48] Emitting module SwiftSyntax600
[14/50] Emitting module ExtensionApiJson
[15/73] Compiling ExtensionApiJson resource_bundle_accessor.swift
[16/115] Compiling ExtensionApiJson ExtensionApiJson.swift
[17/115] Compiling ExtensionApiJson resource_bundle_accessor.swift
[18/115] Compiling ExtensionApiJson ExtensionApiJson.swift
[19/115] Emitting module ExtensionApiJson
[20/115] Emitting module ExtensionApi
[21/115] Emitting module ArgumentParserToolInfo
[22/115] Compiling ArgumentParserToolInfo ToolInfo.swift
[22/164] Write Objects.LinkFileList
[24/164] Compiling SwiftOperators PrecedenceGroup.swift
[25/165] Compiling SwiftOperators OperatorTable.swift
[26/165] Compiling SwiftOperators PrecedenceGraph.swift
[27/165] Compiling SwiftOperators SyntaxSynthesis.swift
[28/165] Compiling ArgumentParser ArgumentHelp.swift
[29/165] Compiling ArgumentParser ArgumentVisibility.swift
[30/165] Compiling ArgumentParser CompletionKind.swift
[31/165] Compiling ArgumentParser Errors.swift
[32/165] Compiling ArgumentParser Flag.swift
[33/169] Compiling ArgumentParser AsyncParsableCommand.swift
[34/169] Compiling ArgumentParser HelpGenerator.swift
[35/169] Compiling ArgumentParser MessageInfo.swift
[36/169] Compiling ArgumentParser UsageGenerator.swift
[37/169] Compiling ArgumentParser CollectionExtensions.swift
[40/176] Compiling SwiftOperators OperatorTable+Semantics.swift
[41/176] Compiling SwiftOperators OperatorError.swift
[42/176] Emitting module SwiftOperators
[43/176] Compiling SwiftOperators OperatorError+Diagnostics.swift
[44/176] Compiling SwiftOperators OperatorTable+Defaults.swift
[45/176] Compiling SwiftOperators Operator.swift
[46/176] Compiling SwiftOperators OperatorTable+Folding.swift
[47/194] Compiling ExtensionApi ApiJsonModel.swift
[48/194] Compiling ExtensionApi ApiJsonModel+Extra.swift
[49/194] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[50/194] Compiling SwiftSyntaxMacros AccessorMacro.swift
[51/194] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[52/194] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[53/194] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[54/194] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[55/194] Compiling SwiftSyntaxMacros AttachedMacro.swift
[55/194] Write Objects.LinkFileList
[57/194] Compiling SwiftSyntaxMacros MemberMacro.swift
[58/194] Compiling SwiftSyntaxMacros PeerMacro.swift
[59/194] Compiling SwiftSyntaxMacros PreambleMacro.swift
[62/194] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[63/194] Compiling SwiftSyntaxMacros Macro+Format.swift
[64/194] Compiling SwiftSyntaxMacros Macro.swift
[65/194] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[66/195] Compiling ArgumentParser ParserError.swift
[67/195] Compiling ArgumentParser SplitArguments.swift
[68/195] Compiling ArgumentParser DumpHelpGenerator.swift
[69/195] Compiling ArgumentParser HelpCommand.swift
[70/195] Compiling ArgumentParser InputOrigin.swift
[71/195] Compiling ArgumentParser Name.swift
[72/195] Compiling ArgumentParser Parsed.swift
[73/195] Compiling ArgumentParser ParsedValues.swift
[74/195] Compiling ArgumentParser BashCompletionsGenerator.swift
[75/195] Compiling ArgumentParser CompletionsGenerator.swift
[76/195] Compiling ArgumentParser FishCompletionsGenerator.swift
[77/195] Compiling ArgumentParser ZshCompletionsGenerator.swift
[78/195] Compiling ArgumentParser Argument.swift
[82/195] Compiling SwiftSyntaxMacros BodyMacro.swift
[83/195] Emitting module SwiftSyntaxMacros
[86/195] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[87/195] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[88/195] Emitting module ArgumentParser
[101/195] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[102/195] Compiling ArgumentParser Platform.swift
[103/195] Compiling ArgumentParser SequenceExtensions.swift
[104/195] Compiling ArgumentParser StringExtensions.swift
[105/195] Compiling ArgumentParser Tree.swift
[106/195] Compiling ArgumentParser CommandConfiguration.swift
[107/195] Compiling ArgumentParser CommandGroup.swift
[108/195] Compiling ArgumentParser EnumerableFlag.swift
[109/195] Compiling ArgumentParser ExpressibleByArgument.swift
[110/195] Compiling ArgumentParser ArgumentDefinition.swift
[111/195] Compiling ArgumentParser ArgumentSet.swift
[112/195] Compiling ArgumentParser CommandParser.swift
[113/195] Compiling ArgumentParser InputKey.swift
[113/205] Linking EntryPointGenerator-tool
[114/205] Applying EntryPointGenerator-tool
[115/205] Linking Generator-tool
[117/205] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[118/205] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[119/205] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[120/205] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[121/205] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[122/205] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[123/205] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[124/205] Emitting module SwiftSyntaxMacroExpansion
[125/205] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[126/205] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
Generated swift_entry_point, registering 3 classes, in EntryPoint.generated.swift.
[126/205] Generating Godot entry point
[127/205] Write sources
[128/205] Applying Generator-tool
[130/217] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[131/217] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[132/217] Emitting module SwiftCompilerPluginMessageHandling
[133/218] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[134/218] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[135/218] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[136/218] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[137/218] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[138/218] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[139/218] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[140/218] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[141/218] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[142/218] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[143/220] Emitting module SwiftCompilerPlugin
[144/220] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[145/235] Compiling SwiftGodotMacroLibrary SwiftSyntaxExtensions.swift
[146/236] Compiling SwiftGodotMacroLibrary SignalMacro.swift
[147/236] Compiling SwiftGodotMacroLibrary SignalAttachmentMacro.swift
[148/236] Compiling SwiftGodotMacroLibrary SceneTreeMacro.swift
[149/236] Compiling SwiftGodotMacroLibrary NativeHandleDiscardingMacro.swift
[150/236] Compiling SwiftGodotMacroLibrary PickerNameProviderMacro.swift
[151/236] Compiling SwiftGodotMacroLibrary TextureLiteralMacro.swift
[151/236] Generating GeneratedSources
[153/236] Compiling SwiftGodotMacroLibrary CodePrinter.swift
[154/236] Compiling SwiftGodotMacroLibrary InitSwiftExtensionMacro.swift
[155/236] Compiling SwiftGodotMacroLibrary MacroExportGroup.swift
[156/236] Compiling SwiftGodotMacroLibrary MacroExportSubgroup.swift
[157/236] Compiling SwiftGodotMacroLibrary MacroCallable.swift
[158/236] Compiling SwiftGodotMacroLibrary MacroExport.swift
[159/236] Emitting module SwiftGodotMacroLibrary
[160/236] Compiling SwiftGodotMacroLibrary MacroGodot.swift
[161/236] Compiling SwiftGodotMacroLibrary MacroSharedApi.swift
[162/236] Write sources
[163/236] Write Objects.LinkFileList
[164/236] Write sources
[172/236] Compiling SwiftSyntax Trivia.swift
[172/236] Linking SwiftGodotMacroLibrary-tool
[174/688] Compiling SwiftGodot AudioEffectEQ6.swift
[175/688] Compiling SwiftGodot AudioEffectFilter.swift
[176/688] Compiling SwiftGodot AudioEffectHardLimiter.swift
[177/688] Compiling SwiftGodot AudioEffectHighPassFilter.swift
[178/688] Compiling SwiftGodot AudioEffectHighShelfFilter.swift
[179/688] Compiling SwiftGodot AudioEffectInstance.swift
[180/688] Compiling SwiftGodot AudioEffectLimiter.swift
[181/688] Compiling SwiftGodot AudioEffectLowPassFilter.swift
[182/688] Compiling SwiftGodot AudioEffectLowShelfFilter.swift
[183/688] Compiling SwiftGodot AudioEffectNotchFilter.swift
[184/688] Compiling SwiftGodot AudioEffectPanner.swift
[185/688] Compiling SwiftGodot Transform2D.swift
[186/688] Compiling SwiftGodot Transform3D.swift
[187/688] Compiling SwiftGodot utility.swift
[188/688] Compiling SwiftGodot Vector2.swift
[189/688] Compiling SwiftGodot Vector2i.swift
[190/688] Compiling SwiftGodot Vector3.swift
[191/688] Compiling SwiftGodot Vector3i.swift
[192/688] Compiling SwiftGodot Vector4.swift
[193/688] Compiling SwiftGodot Vector4i.swift
[194/688] Compiling SwiftGodot AESContext.swift
[195/688] Compiling SwiftGodot AStar2D.swift
[196/688] Compiling SwiftGodot AtlasTexture.swift
[197/688] Compiling SwiftGodot AudioBusLayout.swift
[198/688] Compiling SwiftGodot AudioEffect.swift
[199/688] Compiling SwiftGodot AudioEffectAmplify.swift
[200/688] Compiling SwiftGodot AudioEffectBandLimitFilter.swift
[201/688] Compiling SwiftGodot AudioEffectBandPassFilter.swift
[202/688] Compiling SwiftGodot AudioEffectCapture.swift
[203/688] Compiling SwiftGodot AudioEffectChorus.swift
[204/688] Compiling SwiftGodot AudioEffectCompressor.swift
[205/688] Compiling SwiftGodot AudioEffectDelay.swift
[206/688] Compiling SwiftGodot AudioEffectDistortion.swift
[207/688] Compiling SwiftGodot AudioEffectEQ.swift
[208/688] Compiling SwiftGodot AudioEffectEQ10.swift
[209/688] Compiling SwiftGodot AudioEffectEQ21.swift
[246/738] Compiling SwiftGodot AudioStreamPlaybackSynchronized.swift
[247/738] Compiling SwiftGodot AudioStreamPlayer.swift
[248/738] Compiling SwiftGodot AudioStreamPlayer2D.swift
[249/738] Compiling SwiftGodot AudioStreamPlayer3D.swift
[250/738] Compiling SwiftGodot AudioStreamPlaylist.swift
[251/738] Compiling SwiftGodot AudioStreamPolyphonic.swift
[252/738] Compiling SwiftGodot AudioStreamRandomizer.swift
[253/738] Compiling SwiftGodot AudioStreamSynchronized.swift
[254/738] Compiling SwiftGodot AudioStreamWAV.swift
[255/738] Compiling SwiftGodot BackBufferCopy.swift
[256/738] Compiling SwiftGodot BaseButton.swift
[257/738] Compiling SwiftGodot BaseMaterial3D.swift
[258/738] Compiling SwiftGodot BitMap.swift
[259/738] Compiling SwiftGodot Bone2D.swift
[260/738] Compiling SwiftGodot BoneAttachment3D.swift
[261/738] Compiling SwiftGodot BoneMap.swift
[262/738] Compiling SwiftGodot BoxContainer.swift
[263/738] Compiling SwiftGodot BoxMesh.swift
[264/738] Compiling SwiftGodot BoxOccluder3D.swift
[265/738] Compiling SwiftGodot BoxShape3D.swift
[266/738] Compiling SwiftGodot Button.swift
[267/738] Compiling SwiftGodot ButtonGroup.swift
[268/738] Compiling SwiftGodot CPUParticles2D.swift
[269/738] Compiling SwiftGodot CPUParticles3D.swift
[270/738] Compiling SwiftGodot CSGBox3D.swift
[271/763] Emitting module SwiftSyntax
[272/763] Compiling SwiftGodot AnimatedTexture.swift
[273/763] Compiling SwiftGodot Animation.swift
[274/763] Compiling SwiftGodot AnimationLibrary.swift
[275/763] Compiling SwiftGodot AnimationMixer.swift
[276/763] Compiling SwiftGodot AnimationNode.swift
[277/763] Compiling SwiftGodot AnimationNodeAdd2.swift
[278/763] Compiling SwiftGodot AnimationNodeAdd3.swift
[279/763] Compiling SwiftGodot AudioEffectPhaser.swift
[280/763] Compiling SwiftGodot AudioEffectPitchShift.swift
[281/763] Compiling SwiftGodot AudioEffectRecord.swift
[282/763] Compiling SwiftGodot AudioEffectReverb.swift
[283/763] Compiling SwiftGodot AudioEffectSpectrumAnalyzer.swift
[284/763] Compiling SwiftGodot AudioEffectSpectrumAnalyzerInstance.swift
[285/763] Compiling SwiftGodot AudioEffectStereoEnhance.swift
[286/763] Compiling SwiftGodot AudioListener2D.swift
[287/763] Compiling SwiftGodot AudioListener3D.swift
[288/763] Compiling SwiftGodot AudioSample.swift
[289/763] Compiling SwiftGodot AudioSamplePlayback.swift
[290/763] Compiling SwiftGodot AudioServer.swift
[291/763] Compiling SwiftGodot AudioStream.swift
[292/763] Compiling SwiftGodot AudioStreamGenerator.swift
[293/763] Compiling SwiftGodot AnimationNodeAnimation.swift
[294/763] Compiling SwiftGodot AnimationNodeBlend2.swift
[295/763] Compiling SwiftGodot AnimationNodeBlend3.swift
[296/763] Compiling SwiftGodot AnimationNodeBlendSpace1D.swift
[297/763] Compiling SwiftGodot AnimationNodeBlendSpace2D.swift
[298/763] Compiling SwiftGodot AnimationNodeBlendTree.swift
[299/763] Compiling SwiftGodot AnimationNodeExtension.swift
[300/763] Compiling SwiftGodot AnimationNodeOneShot.swift
[301/763] Compiling SwiftGodot AnimationNodeOutput.swift
[302/763] Compiling SwiftGodot AnimationNodeStateMachine.swift
[303/763] Compiling SwiftGodot AnimationNodeStateMachinePlayback.swift
[304/763] Compiling SwiftGodot AnimationNodeStateMachineTransition.swift
[305/763] Compiling SwiftGodot AnimationNodeSub2.swift
[306/763] Compiling SwiftGodot AnimationNodeSync.swift
[307/763] Compiling SwiftGodot AnimationNodeTimeScale.swift
[308/763] Compiling SwiftGodot AnimationNodeTimeSeek.swift
[309/763] Compiling SwiftGodot AnimationNodeTransition.swift
[310/763] Compiling SwiftGodot AnimationPlayer.swift
[311/763] Compiling SwiftGodot AnimationRootNode.swift
[312/763] Compiling SwiftGodot AnimationTree.swift
[313/763] Compiling SwiftGodot Area2D.swift
[314/763] Compiling SwiftGodot Area3D.swift
[315/763] Compiling SwiftGodot ArrayMesh.swift
[316/763] Compiling SwiftGodot ArrayOccluder3D.swift
[317/763] Compiling SwiftGodot AspectRatioContainer.swift
[332/788] Compiling SwiftGodot AudioStreamGeneratorPlayback.swift
[333/788] Compiling SwiftGodot AudioStreamInteractive.swift
[334/788] Compiling SwiftGodot AudioStreamMP3.swift
[335/788] Compiling SwiftGodot AudioStreamMicrophone.swift
[336/788] Compiling SwiftGodot AudioStreamOggVorbis.swift
[337/788] Compiling SwiftGodot AudioStreamPlayback.swift
[338/788] Compiling SwiftGodot AudioStreamPlaybackInteractive.swift
[339/788] Compiling SwiftGodot AudioStreamPlaybackOggVorbis.swift
[340/788] Compiling SwiftGodot AudioStreamPlaybackPlaylist.swift
[341/788] Compiling SwiftGodot AudioStreamPlaybackPolyphonic.swift
[342/788] Compiling SwiftGodot AudioStreamPlaybackResampled.swift
[354/813] Compiling SwiftGodot AStar3D.swift
[355/813] Compiling SwiftGodot AStarGrid2D.swift
[356/813] Compiling SwiftGodot AcceptDialog.swift
[357/813] Compiling SwiftGodot AnimatableBody2D.swift
[358/813] Compiling SwiftGodot AnimatableBody3D.swift
[359/813] Compiling SwiftGodot AnimatedSprite2D.swift
[360/813] Compiling SwiftGodot AnimatedSprite3D.swift
[375/896] Compiling SwiftDiagnostics Message.swift
[376/897] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[377/897] Compiling SwiftBasicFormat Syntax+Extensions.swift
[378/897] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[379/897] Compiling SwiftDiagnostics Note.swift
[380/897] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[381/897] Compiling SwiftDiagnostics FixIt.swift
[382/897] Compiling SwiftDiagnostics Diagnostic.swift
[383/897] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[384/897] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[385/897] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[386/897] Emitting module SwiftDiagnostics
[387/897] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[388/897] Compiling SwiftDiagnostics Convenience.swift
[389/897] Emitting module SwiftBasicFormat
[390/897] Compiling SwiftBasicFormat BasicFormat.swift
[391/897] Compiling SwiftBasicFormat InferIndentation.swift
[392/897] Compiling SwiftGodot CompressedTexture2D.swift
[393/897] Compiling SwiftGodot CompressedTexture2DArray.swift
[394/897] Compiling SwiftGodot CompressedTexture3D.swift
[395/897] Compiling SwiftGodot CompressedTextureLayered.swift
[396/897] Compiling SwiftGodot ConcavePolygonShape2D.swift
[397/897] Compiling SwiftGodot ConcavePolygonShape3D.swift
[398/897] Compiling SwiftGodot ConeTwistJoint3D.swift
[399/897] Compiling SwiftGodot ConfigFile.swift
[400/897] Compiling SwiftGodot ConfirmationDialog.swift
[401/897] Compiling SwiftGodot Container.swift
[402/897] Compiling SwiftGodot Control.swift
[403/897] Compiling SwiftGodot ConvexPolygonShape2D.swift
[404/897] Compiling SwiftGodot ConvexPolygonShape3D.swift
[405/897] Compiling SwiftGodot Crypto.swift
[406/897] Compiling SwiftGodot CryptoKey.swift
[407/897] Compiling SwiftGodot Cubemap.swift
[408/897] Compiling SwiftGodot CubemapArray.swift
[409/897] Compiling SwiftGodot Curve.swift
[410/897] Compiling SwiftGodot Curve2D.swift
[411/897] Compiling SwiftGodot Curve3D.swift
[412/897] Compiling SwiftGodot CurveTexture.swift
[413/897] Compiling SwiftGodot CurveXYZTexture.swift
[414/897] Compiling SwiftGodot CylinderMesh.swift
[415/897] Compiling SwiftGodot CylinderShape3D.swift
[416/897] Compiling SwiftGodot DTLSServer.swift
[417/922] Compiling SwiftParser TopLevel.swift
[418/922] Compiling SwiftParser TriviaParser.swift
[419/922] Compiling SwiftParser Types.swift
[420/922] Compiling SwiftParser ExperimentalFeatures.swift
[421/922] Compiling SwiftParser StringLiterals.swift
[422/922] Compiling SwiftParser SwiftParserCompatibility.swift
[423/922] Compiling SwiftParser SwiftVersion.swift
[424/922] Compiling SwiftParser SyntaxUtils.swift
[425/926] Emitting module SwiftParser
[426/926] Compiling SwiftParser UnicodeScalarExtensions.swift
[427/926] Compiling SwiftParser Lookahead.swift
[428/926] Compiling SwiftParser LoopProgressCondition.swift
[429/926] Compiling SwiftParser Modifiers.swift
[430/926] Compiling SwiftParser Names.swift
[431/926] Compiling SwiftParser Attributes.swift
[432/926] Compiling SwiftParser Availability.swift
[433/926] Compiling SwiftParser CharacterInfo.swift
[434/926] Compiling SwiftParser CollectionNodes+Parsable.swift
[435/926] Compiling SwiftParser Declarations.swift
[436/926] Compiling SwiftParser Nominals.swift
[437/926] Compiling SwiftParser Parameters.swift
[438/926] Compiling SwiftParser ParseSourceFile.swift
[439/926] Compiling SwiftParser Parser.swift
[440/926] Compiling SwiftParser Patterns.swift
[441/926] Compiling SwiftParser Recovery.swift
[442/926] Compiling SwiftParser Specifiers.swift
[443/926] Compiling SwiftParser Statements.swift
[444/926] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[445/926] Compiling SwiftParser Directives.swift
[446/926] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[447/926] Compiling SwiftParser Expressions.swift
[448/926] Compiling SwiftParser IncrementalParseTransition.swift
[449/926] Compiling SwiftParser IsValidIdentifier.swift
[450/926] Compiling SwiftParser Cursor.swift
[451/926] Compiling SwiftParser Lexeme.swift
[452/926] Compiling SwiftParser LexemeSequence.swift
[453/926] Compiling SwiftParser Lexer.swift
[454/926] Compiling SwiftParser RegexLiteralLexer.swift
[455/926] Compiling SwiftParser TokenConsumer.swift
[456/926] Compiling SwiftParser TokenPrecedence.swift
[457/926] Compiling SwiftParser TokenSpec.swift
[458/926] Compiling SwiftParser TokenSpecSet.swift
[509/947] Compiling SwiftGodot ColorExtensions.swift
[510/947] Compiling SwiftGodot Compat.swift
[511/947] Compiling SwiftGodot GDUtilityFunctions.swift
[512/947] Compiling SwiftGodot NodeExtensions.swift
[513/948] Compiling SwiftGodot PhysicsDirectSpaceState2D+IntersectRayResult.swift
[514/948] Compiling SwiftGodot PhysicsDirectSpaceState3D+IntersectRayResult.swift
[515/948] Compiling SwiftGodot RefCountedExtensions.swift
[516/948] Compiling SwiftGodot VariantArrayExtensions.swift
[517/948] Compiling SwiftGodot VariantDictionaryExtensions.swift
[518/948] Compiling SwiftGodot FastVariant.swift
[519/948] Compiling SwiftGodot GodotInterface.swift
[520/948] Compiling SwiftGodot MacroDefs.swift
[521/948] Compiling SwiftGodot MacroCallableWrapResult.swift
[522/948] Compiling SwiftGodot MacroExportInvokeGetter.swift
[523/948] Compiling SwiftGodot MacroExportInvokeSetter.swift
[524/948] Compiling SwiftGodot MacroGodotArgumentPropInfo.swift
[525/948] Compiling SwiftGodot MacroGodotPropertyPropInfo.swift
[526/948] Compiling SwiftGodot MacroGodotReturnValuePropInfo.swift
[527/948] Compiling SwiftGodot LinearInterpolation.swift
[528/949] Compiling SwiftGodot RotationConversion.swift
[529/949] Compiling SwiftGodot Snapped.swift
[530/949] Compiling SwiftGodot SwiftGodot.swift
[531/949] Compiling SwiftGodot Variant.swift
[532/949] Compiling SwiftGodot AABB.swift
[533/949] Compiling SwiftGodot Array.swift
[534/1001] Compiling SwiftGodot Arguments.swift
[535/1001] Compiling SwiftGodot BuiltinConvertible.swift
[536/1001] Compiling SwiftGodot ClassServices.swift
[537/1001] Compiling SwiftGodot FastFunctionBridging.swift
[538/1001] Compiling SwiftGodot FastStringName.swift
[539/1001] Compiling SwiftGodot InspectableProperty.swift
[540/1001] Compiling SwiftGodot NIOLock.swift
[541/1001] Compiling SwiftGodot ObjectCollection.swift
[542/1001] Compiling SwiftGodot ObjectExtensions.swift
[543/1001] Compiling SwiftGodot Packed.swift
[544/1001] Compiling SwiftGodot SignalProxy.swift
[545/1001] Compiling SwiftGodot SignalRegistration.swift
[546/1001] Compiling SwiftGodot SignalWithArguments.swift
[547/1001] Compiling SwiftGodot StringExtensions.swift
[548/1001] Compiling SwiftGodot TypedArray.swift
[549/1001] Compiling SwiftGodot TypedDictionary.swift
[550/1001] Compiling SwiftGodot VariantCollection.swift
[551/1001] Compiling SwiftGodot VariantConvertible.swift
[552/1001] Compiling SwiftGodot Various.swift
[553/1001] Compiling SwiftGodot Wrapped.swift
[554/1001] Compiling SwiftGodot EntryPoint.swift
[555/1001] Compiling SwiftGodot Export.swift
[556/1001] Compiling SwiftGodot Arithmetic.swift
[557/1001] Compiling SwiftGodot CallableExtensions.swift
[558/1001] Compiling SwiftGodot ClassInfoExtensions.swift
[575/1001] Compiling SwiftParser IsLexerClassified.swift
[576/1001] Compiling SwiftParser LayoutNodes+Parsable.swift
[577/1001] Compiling SwiftParser Parser+TokenSpecSet.swift
[578/1001] Compiling SwiftParser TokenSpecStaticMembers.swift
[588/1051] Compiling SwiftGodot CapsuleShape3D.swift
[589/1051] Compiling SwiftGodot CenterContainer.swift
[590/1051] Compiling SwiftGodot CharFXTransform.swift
[591/1051] Compiling SwiftGodot CharacterBody2D.swift
[592/1051] Compiling SwiftGodot CharacterBody3D.swift
[593/1051] Compiling SwiftGodot CheckBox.swift
[594/1051] Compiling SwiftGodot CheckButton.swift
[595/1051] Compiling SwiftGodot CircleShape2D.swift
[596/1051] Compiling SwiftGodot ClassDB.swift
[597/1051] Compiling SwiftGodot CodeEdit.swift
[598/1051] Compiling SwiftGodot CodeHighlighter.swift
[599/1051] Compiling SwiftGodot CollisionObject2D.swift
[600/1051] Compiling SwiftGodot CollisionObject3D.swift
[601/1051] Compiling SwiftGodot CollisionPolygon2D.swift
[602/1051] Compiling SwiftGodot CollisionPolygon3D.swift
[603/1051] Compiling SwiftGodot CollisionShape2D.swift
[604/1051] Compiling SwiftGodot CollisionShape3D.swift
[605/1051] Compiling SwiftGodot ColorPalette.swift
[606/1051] Compiling SwiftGodot ColorPicker.swift
[607/1051] Compiling SwiftGodot ColorPickerButton.swift
[608/1051] Compiling SwiftGodot ColorRect.swift
[609/1051] Compiling SwiftGodot Compositor.swift
[610/1051] Compiling SwiftGodot CompositorEffect.swift
[611/1051] Compiling SwiftGodot CompressedCubemap.swift
[612/1051] Compiling SwiftGodot CompressedCubemapArray.swift
[638/1117] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[639/1117] Emitting module EntryPointGenerator
[640/1117] Compiling EntryPointGenerator EntryPointGenerator.swift
[640/1117] Write Objects.LinkFileList
[642/1117] Compiling SwiftGodot CSGCombiner3D.swift
[643/1117] Compiling SwiftGodot CSGCylinder3D.swift
[644/1117] Compiling SwiftGodot CSGMesh3D.swift
[645/1117] Compiling SwiftGodot CSGPolygon3D.swift
[646/1117] Compiling SwiftGodot CSGPrimitive3D.swift
[647/1117] Compiling SwiftGodot CSGShape3D.swift
[648/1117] Compiling SwiftGodot CSGSphere3D.swift
[649/1117] Compiling SwiftGodot CSGTorus3D.swift
[650/1117] Compiling SwiftGodot CallbackTweener.swift
[651/1117] Compiling SwiftGodot Camera2D.swift
[652/1117] Compiling SwiftGodot Camera3D.swift
[653/1117] Compiling SwiftGodot CameraAttributes.swift
[654/1117] Compiling SwiftGodot CameraAttributesPhysical.swift
[655/1117] Compiling SwiftGodot CameraAttributesPractical.swift
[656/1117] Compiling SwiftGodot CameraFeed.swift
[657/1117] Compiling SwiftGodot CameraServer.swift
[658/1117] Compiling SwiftGodot CameraTexture.swift
[659/1117] Compiling SwiftGodot CanvasGroup.swift
[660/1117] Compiling SwiftGodot CanvasItem.swift
[661/1117] Compiling SwiftGodot CanvasItemMaterial.swift
[662/1117] Compiling SwiftGodot CanvasLayer.swift
[663/1117] Compiling SwiftGodot CanvasModulate.swift
[664/1117] Compiling SwiftGodot CanvasTexture.swift
[665/1117] Compiling SwiftGodot CapsuleMesh.swift
[666/1117] Compiling SwiftGodot CapsuleShape2D.swift
[676/1117] Compiling SwiftGodot Basis.swift
[680/1117] Compiling SwiftGodot Callable.swift
[682/1117] Compiling SwiftGodot Color.swift
[684/1117] Compiling SwiftGodot core-defs.swift
[686/1117] Compiling SwiftGodot Dictionary.swift
[697/1117] Compiling SwiftGodot NodePath.swift
[698/1117] Compiling SwiftGodot PackedByteArray.swift
[699/1117] Compiling SwiftGodot PackedColorArray.swift
[700/1117] Compiling SwiftGodot PackedFloat32Array.swift
[701/1117] Compiling SwiftGodot PackedFloat64Array.swift
[702/1117] Compiling SwiftGodot PackedInt32Array.swift
[703/1117] Compiling SwiftGodot PackedInt64Array.swift
[704/1117] Compiling SwiftGodot PackedStringArray.swift
[705/1117] Compiling SwiftGodot PackedVector2Array.swift
[706/1117] Compiling SwiftGodot PackedVector3Array.swift
[707/1117] Compiling SwiftGodot PackedVector4Array.swift
[708/1117] Compiling SwiftGodot Plane.swift
[709/1117] Compiling SwiftGodot Projection.swift
[710/1117] Compiling SwiftGodot Quaternion.swift
[711/1117] Compiling SwiftGodot Rect2.swift
[712/1117] Compiling SwiftGodot Rect2i.swift
[713/1117] Compiling SwiftGodot RID.swift
[714/1117] Compiling SwiftGodot Signal.swift
[715/1117] Compiling SwiftGodot String.swift
[716/1117] Compiling SwiftGodot StringName.swift
[717/1117] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[718/1117] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[719/1193] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[720/1193] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[721/1193] Compiling SwiftParserDiagnostics Utils.swift
[721/1193] Linking EntryPointGenerator
[723/1193] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[724/1193] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[725/1193] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[726/1193] Compiling SwiftParserDiagnostics PresenceUtils.swift
[727/1193] Compiling SwiftParserDiagnostics MissingNodesError.swift
[728/1193] Compiling SwiftParserDiagnostics MissingTokenError.swift
[729/1193] Emitting module SwiftParserDiagnostics
[730/1193] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[731/1193] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[731/1193] Applying EntryPointGenerator
[733/1208] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[759/1234] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[760/1234] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[761/1234] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[762/1234] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[763/1234] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[764/1234] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[765/1234] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[766/1234] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[767/1234] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[768/1234] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[769/1234] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[770/1234] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[771/1234] Compiling SwiftSyntaxBuilder Indenter.swift
[772/1234] Compiling SwiftSyntaxBuilder ListBuilder.swift
[773/1234] Emitting module SwiftSyntaxBuilder
[774/1248] Compiling Generator UtilityGen.swift
[775/1249] Compiling Generator UnsafePointerHelpers.swift
[776/1249] Compiling Generator main.swift
[777/1249] Compiling Generator StringOperations.swift
[778/1249] Compiling Generator TypeHelpers.swift
[779/1249] Compiling Generator Printer.swift
[780/1249] Compiling Generator MethodGen.swift
[781/1249] Compiling Generator NativeStructures.swift
[782/1249] Compiling Generator DocModel.swift
[783/1249] Compiling Generator Enums.swift
[784/1249] Emitting module Generator
[785/1249] Compiling Generator ClassGen.swift
[786/1249] Compiling Generator Data.swift
[787/1249] Compiling Generator Arguments.swift
[788/1249] Compiling Generator BuiltinGen.swift
[788/1249] Write Objects.LinkFileList
[790/1249] Compiling SwiftGodot EditorFeatureProfile.swift
[791/1249] Compiling SwiftGodot EditorFileDialog.swift
[792/1249] Compiling SwiftGodot EditorFileSystem.swift
[793/1249] Compiling SwiftGodot EditorFileSystemDirectory.swift
[794/1249] Compiling SwiftGodot EditorFileSystemImportFormatSupportQuery.swift
[795/1249] Compiling SwiftGodot EditorImportPlugin.swift
[796/1249] Compiling SwiftGodot EditorInspector.swift
[797/1249] Compiling SwiftGodot EditorInspectorPlugin.swift
[798/1249] Compiling SwiftGodot EditorInterface.swift
[799/1249] Compiling SwiftGodot EditorNode3DGizmo.swift
[800/1249] Compiling SwiftGodot EditorNode3DGizmoPlugin.swift
[801/1249] Compiling SwiftGodot EditorPaths.swift
[802/1249] Compiling SwiftGodot EditorPlugin.swift
[803/1249] Compiling SwiftGodot EditorProperty.swift
[804/1249] Compiling SwiftGodot EditorResourceConversionPlugin.swift
[805/1249] Compiling SwiftGodot EditorResourcePicker.swift
[806/1249] Compiling SwiftGodot EditorResourcePreview.swift
[807/1249] Compiling SwiftGodot EditorResourcePreviewGenerator.swift
[808/1249] Compiling SwiftGodot EditorResourceTooltipPlugin.swift
[809/1249] Compiling SwiftGodot EditorSceneFormatImporter.swift
[810/1249] Compiling SwiftGodot EditorSceneFormatImporterBlend.swift
[811/1249] Compiling SwiftGodot EditorSceneFormatImporterFBX2GLTF.swift
[812/1249] Compiling SwiftGodot EditorSceneFormatImporterGLTF.swift
[813/1249] Compiling SwiftGodot EditorSceneFormatImporterUFBX.swift
[814/1249] Compiling SwiftGodot EditorScenePostImport.swift
[815/1274] Compiling SwiftGodot DampedSpringJoint2D.swift
[816/1274] Compiling SwiftGodot Decal.swift
[817/1274] Compiling SwiftGodot DirAccess.swift
[818/1274] Compiling SwiftGodot DirectionalLight2D.swift
[819/1274] Compiling SwiftGodot DirectionalLight3D.swift
[820/1274] Compiling SwiftGodot DisplayServer.swift
[821/1274] Compiling SwiftGodot DisplayServerEmbedded.swift
[822/1274] Compiling SwiftGodot ENetConnection.swift
[823/1274] Compiling SwiftGodot ENetMultiplayerPeer.swift
[824/1274] Compiling SwiftGodot ENetPacketPeer.swift
[825/1274] Compiling SwiftGodot EditorCommandPalette.swift
[826/1274] Compiling SwiftGodot EditorContextMenuPlugin.swift
[827/1274] Compiling SwiftGodot EditorDebuggerPlugin.swift
[828/1274] Compiling SwiftGodot EditorDebuggerSession.swift
[829/1274] Compiling SwiftGodot EditorExportPlatform.swift
[830/1274] Compiling SwiftGodot EditorExportPlatformAndroid.swift
[831/1274] Compiling SwiftGodot EditorExportPlatformExtension.swift
[832/1274] Compiling SwiftGodot EditorExportPlatformIOS.swift
[833/1274] Compiling SwiftGodot EditorExportPlatformLinuxBSD.swift
[834/1274] Compiling SwiftGodot EditorExportPlatformMacOS.swift
[835/1274] Compiling SwiftGodot EditorExportPlatformPC.swift
[836/1274] Compiling SwiftGodot EditorExportPlatformWeb.swift
[837/1274] Compiling SwiftGodot EditorExportPlatformWindows.swift
[838/1274] Compiling SwiftGodot EditorExportPlugin.swift
[839/1274] Compiling SwiftGodot EditorExportPreset.swift
[839/1299] Linking Generator
[840/1299] Applying Generator
[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 ImmediateMesh.swift
[893/1349] Compiling SwiftGodot ImporterMesh.swift
[894/1349] Compiling SwiftGodot ImporterMeshInstance3D.swift
[895/1349] Compiling SwiftGodot Input.swift
[896/1349] Compiling SwiftGodot InputEvent.swift
[897/1349] Compiling SwiftGodot InputEventAction.swift
[898/1349] Compiling SwiftGodot InputEventFromWindow.swift
[899/1349] Compiling SwiftGodot InputEventGesture.swift
[900/1349] Compiling SwiftGodot InputEventJoypadButton.swift
[901/1349] Compiling SwiftGodot InputEventJoypadMotion.swift
[902/1349] Compiling SwiftGodot InputEventKey.swift
[903/1349] Compiling SwiftGodot InputEventMIDI.swift
[904/1349] Compiling SwiftGodot InputEventMagnifyGesture.swift
[905/1349] Compiling SwiftGodot InputEventMouse.swift
[906/1349] Compiling SwiftGodot InputEventMouseButton.swift
[907/1349] Compiling SwiftGodot InputEventMouseMotion.swift
[908/1349] Compiling SwiftGodot InputEventPanGesture.swift
[909/1349] Compiling SwiftGodot InputEventScreenDrag.swift
[910/1349] Compiling SwiftGodot InputEventScreenTouch.swift
[911/1349] Compiling SwiftGodot InputEventShortcut.swift
[912/1349] Compiling SwiftGodot InputEventWithModifiers.swift
[913/1349] Compiling SwiftGodot InputMap.swift
[914/1349] Compiling SwiftGodot InstancePlaceholder.swift
[915/1349] Compiling SwiftGodot IntervalTweener.swift
[916/1349] Compiling SwiftGodot ItemList.swift
[942/1399] Compiling SwiftGodot EditorScenePostImportPlugin.swift
[943/1399] Compiling SwiftGodot EditorScript.swift
[944/1399] Compiling SwiftGodot EditorScriptPicker.swift
[945/1399] Compiling SwiftGodot EditorSelection.swift
[946/1399] Compiling SwiftGodot EditorSettings.swift
[947/1399] Compiling SwiftGodot EditorSpinSlider.swift
[948/1399] Compiling SwiftGodot EditorSyntaxHighlighter.swift
[949/1399] Compiling SwiftGodot EditorToaster.swift
[950/1399] Compiling SwiftGodot EditorTranslationParserPlugin.swift
[951/1399] Compiling SwiftGodot EditorUndoRedoManager.swift
[952/1399] Compiling SwiftGodot EditorVCSInterface.swift
[953/1399] Compiling SwiftGodot EncodedObjectAsID.swift
[954/1399] Compiling SwiftGodot Engine.swift
[955/1399] Compiling SwiftGodot EngineDebugger.swift
[956/1399] Compiling SwiftGodot EngineProfiler.swift
[957/1399] Compiling SwiftGodot Environment.swift
[958/1399] Compiling SwiftGodot Expression.swift
[959/1399] Compiling SwiftGodot ExternalTexture.swift
[960/1399] Compiling SwiftGodot FBXDocument.swift
[961/1399] Compiling SwiftGodot FBXState.swift
[962/1399] Compiling SwiftGodot FastNoiseLite.swift
[963/1399] Compiling SwiftGodot FileAccess.swift
[964/1399] Compiling SwiftGodot FileDialog.swift
[965/1399] Compiling SwiftGodot FileSystemDock.swift
[966/1399] Compiling SwiftGodot FlowContainer.swift
[967/1424] Compiling SwiftGodot FogMaterial.swift
[968/1424] Compiling SwiftGodot FogVolume.swift
[969/1424] Compiling SwiftGodot Font.swift
[970/1424] Compiling SwiftGodot FontFile.swift
[971/1424] Compiling SwiftGodot FontVariation.swift
[972/1424] Compiling SwiftGodot FramebufferCacheRD.swift
[973/1424] Compiling SwiftGodot GDExtension.swift
[974/1424] Compiling SwiftGodot GDExtensionManager.swift
[975/1424] Compiling SwiftGodot GDScript.swift
[976/1424] Compiling SwiftGodot GDScriptSyntaxHighlighter.swift
[977/1424] Compiling SwiftGodot GLTFAccessor.swift
[978/1424] Compiling SwiftGodot GLTFAnimation.swift
[979/1424] Compiling SwiftGodot GLTFBufferView.swift
[980/1424] Compiling SwiftGodot GLTFCamera.swift
[981/1424] Compiling SwiftGodot GLTFDocument.swift
[982/1424] Compiling SwiftGodot GLTFDocumentExtension.swift
[983/1424] Compiling SwiftGodot GLTFDocumentExtensionConvertImporterMesh.swift
[984/1424] Compiling SwiftGodot GLTFLight.swift
[985/1424] Compiling SwiftGodot GLTFMesh.swift
[986/1424] Compiling SwiftGodot GLTFNode.swift
[987/1424] Compiling SwiftGodot GLTFObjectModelProperty.swift
[988/1424] Compiling SwiftGodot GLTFPhysicsBody.swift
[989/1424] Compiling SwiftGodot GLTFPhysicsShape.swift
[990/1424] Compiling SwiftGodot GLTFSkeleton.swift
[991/1424] Compiling SwiftGodot GLTFSkin.swift
[1017/1474] Compiling SwiftGodot GLTFSpecGloss.swift
[1018/1474] Compiling SwiftGodot GLTFState.swift
[1019/1474] Compiling SwiftGodot GLTFTexture.swift
[1020/1474] Compiling SwiftGodot GLTFTextureSampler.swift
[1021/1474] Compiling SwiftGodot GPUParticles2D.swift
[1022/1474] Compiling SwiftGodot GPUParticles3D.swift
[1023/1474] Compiling SwiftGodot GPUParticlesAttractor3D.swift
[1024/1474] Compiling SwiftGodot GPUParticlesAttractorBox3D.swift
[1025/1474] Compiling SwiftGodot GPUParticlesAttractorSphere3D.swift
[1026/1474] Compiling SwiftGodot GPUParticlesAttractorVectorField3D.swift
[1027/1474] Compiling SwiftGodot GPUParticlesCollision3D.swift
[1028/1474] Compiling SwiftGodot GPUParticlesCollisionBox3D.swift
[1029/1474] Compiling SwiftGodot GPUParticlesCollisionHeightField3D.swift
[1030/1474] Compiling SwiftGodot GPUParticlesCollisionSDF3D.swift
[1031/1474] Compiling SwiftGodot GPUParticlesCollisionSphere3D.swift
[1032/1474] Compiling SwiftGodot Generic6DOFJoint3D.swift
[1033/1474] Compiling SwiftGodot Geometry2D.swift
[1034/1474] Compiling SwiftGodot Geometry3D.swift
[1035/1474] Compiling SwiftGodot GeometryInstance3D.swift
[1036/1474] Compiling SwiftGodot GodotInstance.swift
[1037/1474] Compiling SwiftGodot Gradient.swift
[1038/1474] Compiling SwiftGodot GradientTexture1D.swift
[1039/1474] Compiling SwiftGodot GradientTexture2D.swift
[1040/1474] Compiling SwiftGodot GraphEdit.swift
[1041/1474] Compiling SwiftGodot GraphElement.swift
[1042/1499] Compiling SwiftGodot JNISingleton.swift
[1043/1499] Compiling SwiftGodot JSON.swift
[1044/1499] Compiling SwiftGodot JSONRPC.swift
[1045/1499] Compiling SwiftGodot JavaClass.swift
[1046/1499] Compiling SwiftGodot JavaClassWrapper.swift
[1047/1499] Compiling SwiftGodot JavaObject.swift
[1048/1499] Compiling SwiftGodot JavaScriptBridge.swift
[1049/1499] Compiling SwiftGodot JavaScriptObject.swift
[1050/1499] Compiling SwiftGodot Joint2D.swift
[1051/1499] Compiling SwiftGodot Joint3D.swift
[1052/1499] Compiling SwiftGodot KinematicCollision2D.swift
[1053/1499] Compiling SwiftGodot KinematicCollision3D.swift
[1054/1499] Compiling SwiftGodot Label.swift
[1055/1499] Compiling SwiftGodot Label3D.swift
[1056/1499] Compiling SwiftGodot LabelSettings.swift
[1057/1499] Compiling SwiftGodot Light2D.swift
[1058/1499] Compiling SwiftGodot Light3D.swift
[1059/1499] Compiling SwiftGodot LightOccluder2D.swift
[1060/1499] Compiling SwiftGodot LightmapGI.swift
[1061/1499] Compiling SwiftGodot LightmapGIData.swift
[1062/1499] Compiling SwiftGodot LightmapProbe.swift
[1063/1499] Compiling SwiftGodot Lightmapper.swift
[1064/1499] Compiling SwiftGodot LightmapperRD.swift
[1065/1499] Compiling SwiftGodot Line2D.swift
[1066/1499] Compiling SwiftGodot LineEdit.swift
[1142/1599] Compiling SwiftGodot LinkButton.swift
[1143/1599] Compiling SwiftGodot LookAtModifier3D.swift
[1144/1599] Compiling SwiftGodot MainLoop.swift
[1145/1599] Compiling SwiftGodot MarginContainer.swift
[1146/1599] Compiling SwiftGodot Marker2D.swift
[1147/1599] Compiling SwiftGodot Marker3D.swift
[1148/1599] Compiling SwiftGodot Marshalls.swift
[1149/1599] Compiling SwiftGodot Material.swift
[1150/1599] Compiling SwiftGodot MenuBar.swift
[1151/1599] Compiling SwiftGodot MenuButton.swift
[1152/1599] Compiling SwiftGodot Mesh.swift
[1153/1599] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[1154/1599] Compiling SwiftGodot MeshDataTool.swift
[1155/1599] Compiling SwiftGodot MeshInstance2D.swift
[1156/1599] Compiling SwiftGodot MeshInstance3D.swift
[1157/1599] Compiling SwiftGodot MeshLibrary.swift
[1158/1599] Compiling SwiftGodot MeshTexture.swift
[1159/1599] Compiling SwiftGodot MethodTweener.swift
[1160/1599] Compiling SwiftGodot MissingNode.swift
[1161/1599] Compiling SwiftGodot MissingResource.swift
[1162/1599] Compiling SwiftGodot MobileVRInterface.swift
[1163/1599] Compiling SwiftGodot MovieWriter.swift
[1164/1599] Compiling SwiftGodot MultiMesh.swift
[1165/1599] Compiling SwiftGodot MultiMeshInstance2D.swift
[1166/1599] Compiling SwiftGodot MultiMeshInstance3D.swift
[1167/1624] Compiling SwiftGodot OpenXRAnalogThresholdModifier.swift
[1168/1624] Compiling SwiftGodot OpenXRBindingModifier.swift
[1169/1624] Compiling SwiftGodot OpenXRBindingModifierEditor.swift
[1170/1624] Compiling SwiftGodot OpenXRCompositionLayer.swift
[1171/1624] Compiling SwiftGodot OpenXRCompositionLayerCylinder.swift
[1172/1624] Compiling SwiftGodot OpenXRCompositionLayerEquirect.swift
[1173/1624] Compiling SwiftGodot OpenXRCompositionLayerQuad.swift
[1174/1624] Compiling SwiftGodot OpenXRDpadBindingModifier.swift
[1175/1624] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[1176/1624] Compiling SwiftGodot OpenXRHand.swift
[1177/1624] Compiling SwiftGodot OpenXRHapticBase.swift
[1178/1624] Compiling SwiftGodot OpenXRHapticVibration.swift
[1179/1624] Compiling SwiftGodot OpenXRIPBinding.swift
[1180/1624] Compiling SwiftGodot OpenXRIPBindingModifier.swift
[1181/1624] Compiling SwiftGodot OpenXRInteractionProfile.swift
[1182/1624] Compiling SwiftGodot OpenXRInteractionProfileEditor.swift
[1183/1624] Compiling SwiftGodot OpenXRInteractionProfileEditorBase.swift
[1184/1624] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[1185/1624] Compiling SwiftGodot OpenXRInterface.swift
[1186/1624] Compiling SwiftGodot OpenXRVisibilityMask.swift
[1187/1624] Compiling SwiftGodot OptimizedTranslation.swift
[1188/1624] Compiling SwiftGodot OptionButton.swift
[1189/1624] Compiling SwiftGodot PCKPacker.swift
[1190/1624] Compiling SwiftGodot PackedDataContainer.swift
[1191/1624] Compiling SwiftGodot PackedDataContainerRef.swift
[1217/1674] Compiling SwiftGodot PinJoint2D.swift
[1218/1674] Compiling SwiftGodot PinJoint3D.swift
[1219/1674] Compiling SwiftGodot PlaceholderCubemap.swift
[1220/1674] Compiling SwiftGodot PlaceholderCubemapArray.swift
[1221/1674] Compiling SwiftGodot PlaceholderMaterial.swift
[1222/1674] Compiling SwiftGodot PlaceholderMesh.swift
[1223/1674] Compiling SwiftGodot PlaceholderTexture2D.swift
[1224/1674] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[1225/1674] Compiling SwiftGodot PlaceholderTexture3D.swift
[1226/1674] Compiling SwiftGodot PlaceholderTextureLayered.swift
[1227/1674] Compiling SwiftGodot PlaneMesh.swift
[1228/1674] Compiling SwiftGodot PointLight2D.swift
[1229/1674] Compiling SwiftGodot PointMesh.swift
[1230/1674] Compiling SwiftGodot Polygon2D.swift
[1231/1674] Compiling SwiftGodot PolygonOccluder3D.swift
[1232/1674] Compiling SwiftGodot PolygonPathFinder.swift
[1233/1674] Compiling SwiftGodot Popup.swift
[1234/1674] Compiling SwiftGodot PopupMenu.swift
[1235/1674] Compiling SwiftGodot PopupPanel.swift
[1236/1674] Compiling SwiftGodot PortableCompressedTexture2D.swift
[1237/1674] Compiling SwiftGodot PrimitiveMesh.swift
[1238/1674] Compiling SwiftGodot PrismMesh.swift
[1239/1674] Compiling SwiftGodot ProceduralSkyMaterial.swift
[1240/1674] Compiling SwiftGodot ProgressBar.swift
[1241/1674] Compiling SwiftGodot ProjectSettings.swift
[1267/1724] Compiling SwiftGodot PackedScene.swift
[1268/1724] Compiling SwiftGodot PacketPeer.swift
[1269/1724] Compiling SwiftGodot PacketPeerDTLS.swift
[1270/1724] Compiling SwiftGodot PacketPeerExtension.swift
[1271/1724] Compiling SwiftGodot PacketPeerStream.swift
[1272/1724] Compiling SwiftGodot PacketPeerUDP.swift
[1273/1724] Compiling SwiftGodot Panel.swift
[1274/1724] Compiling SwiftGodot PanelContainer.swift
[1275/1724] Compiling SwiftGodot PanoramaSkyMaterial.swift
[1276/1724] Compiling SwiftGodot Parallax2D.swift
[1277/1724] Compiling SwiftGodot ParallaxBackground.swift
[1278/1724] Compiling SwiftGodot ParallaxLayer.swift
[1279/1724] Compiling SwiftGodot ParticleProcessMaterial.swift
[1280/1724] Compiling SwiftGodot Path2D.swift
[1281/1724] Compiling SwiftGodot Path3D.swift
[1282/1724] Compiling SwiftGodot PathFollow2D.swift
[1283/1724] Compiling SwiftGodot PathFollow3D.swift
[1284/1724] Compiling SwiftGodot Performance.swift
[1285/1724] Compiling SwiftGodot PhysicalBone2D.swift
[1286/1724] Compiling SwiftGodot PhysicalBone3D.swift
[1287/1724] Compiling SwiftGodot PhysicalBoneSimulator3D.swift
[1288/1724] Compiling SwiftGodot PhysicalSkyMaterial.swift
[1289/1724] Compiling SwiftGodot PhysicsBody2D.swift
[1290/1724] Compiling SwiftGodot PhysicsBody3D.swift
[1291/1724] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[1292/1749] Compiling SwiftGodot PropertyTweener.swift
[1293/1749] Compiling SwiftGodot QuadMesh.swift
[1294/1749] Compiling SwiftGodot QuadOccluder3D.swift
[1295/1749] Compiling SwiftGodot RDAttachmentFormat.swift
[1296/1749] Compiling SwiftGodot RDFramebufferPass.swift
[1297/1749] Compiling SwiftGodot RDPipelineColorBlendState.swift
[1298/1749] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[1299/1749] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[1300/1749] Compiling SwiftGodot RDPipelineMultisampleState.swift
[1301/1749] Compiling SwiftGodot RDPipelineRasterizationState.swift
[1302/1749] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[1303/1749] Compiling SwiftGodot RDSamplerState.swift
[1304/1749] Compiling SwiftGodot RDShaderFile.swift
[1305/1749] Compiling SwiftGodot RDShaderSPIRV.swift
[1306/1749] Compiling SwiftGodot RDShaderSource.swift
[1307/1749] Compiling SwiftGodot RDTextureFormat.swift
[1308/1749] Compiling SwiftGodot RDTextureView.swift
[1309/1749] Compiling SwiftGodot RDUniform.swift
[1310/1749] Compiling SwiftGodot RDVertexAttribute.swift
[1311/1749] Compiling SwiftGodot RandomNumberGenerator.swift
[1312/1749] Compiling SwiftGodot Range.swift
[1313/1749] Compiling SwiftGodot RayCast2D.swift
[1314/1749] Compiling SwiftGodot RayCast3D.swift
[1315/1749] Compiling SwiftGodot RectangleShape2D.swift
[1316/1749] Compiling SwiftGodot RefCounted.swift
[1317/1774] Compiling SwiftGodot MultiplayerAPI.swift
[1318/1774] Compiling SwiftGodot MultiplayerAPIExtension.swift
[1319/1774] Compiling SwiftGodot MultiplayerPeer.swift
[1320/1774] Compiling SwiftGodot MultiplayerPeerExtension.swift
[1321/1774] Compiling SwiftGodot MultiplayerSpawner.swift
[1322/1774] Compiling SwiftGodot MultiplayerSynchronizer.swift
[1323/1774] Compiling SwiftGodot Mutex.swift
[1324/1774] Compiling SwiftGodot NativeMenu.swift
[1325/1774] Compiling SwiftGodot NavigationAgent2D.swift
[1326/1774] Compiling SwiftGodot NavigationAgent3D.swift
[1327/1774] Compiling SwiftGodot NavigationLink2D.swift
[1328/1774] Compiling SwiftGodot NavigationLink3D.swift
[1329/1774] Compiling SwiftGodot NavigationMesh.swift
[1330/1774] Compiling SwiftGodot NavigationMeshGenerator.swift
[1331/1774] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[1332/1774] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[1333/1774] Compiling SwiftGodot NavigationObstacle2D.swift
[1334/1774] Compiling SwiftGodot NavigationObstacle3D.swift
[1335/1774] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[1336/1774] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[1337/1774] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[1338/1774] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[1339/1774] Compiling SwiftGodot NavigationPolygon.swift
[1340/1774] Compiling SwiftGodot NavigationRegion2D.swift
[1341/1774] Compiling SwiftGodot NavigationRegion3D.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
[1417/1873] Compiling SwiftGodot NavigationServer2D.swift
[1418/1873] Compiling SwiftGodot NavigationServer3D.swift
[1419/1873] Compiling SwiftGodot NinePatchRect.swift
[1420/1873] Compiling SwiftGodot Node.swift
[1421/1873] Compiling SwiftGodot Node2D.swift
[1422/1873] Compiling SwiftGodot Node3D.swift
[1423/1873] Compiling SwiftGodot Node3DGizmo.swift
[1424/1873] Compiling SwiftGodot Noise.swift
[1425/1873] Compiling SwiftGodot NoiseTexture2D.swift
[1426/1873] Compiling SwiftGodot NoiseTexture3D.swift
[1427/1873] Compiling SwiftGodot ORMMaterial3D.swift
[1428/1873] Compiling SwiftGodot OS.swift
[1429/1873] Compiling SwiftGodot Object.swift
[1430/1873] Compiling SwiftGodot Occluder3D.swift
[1431/1873] Compiling SwiftGodot OccluderInstance3D.swift
[1432/1873] Compiling SwiftGodot OccluderPolygon2D.swift
[1433/1873] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[1434/1873] Compiling SwiftGodot OggPacketSequence.swift
[1435/1873] Compiling SwiftGodot OggPacketSequencePlayback.swift
[1436/1873] Compiling SwiftGodot OmniLight3D.swift
[1437/1873] Compiling SwiftGodot OpenXRAPIExtension.swift
[1438/1873] Compiling SwiftGodot OpenXRAction.swift
[1439/1873] Compiling SwiftGodot OpenXRActionBindingModifier.swift
[1440/1873] Compiling SwiftGodot OpenXRActionMap.swift
[1441/1873] Compiling SwiftGodot OpenXRActionSet.swift
[1467/1922] Compiling SwiftGodot RootMotionView.swift
[1468/1922] Compiling SwiftGodot SceneMultiplayer.swift
[1469/1922] Compiling SwiftGodot SceneReplicationConfig.swift
[1470/1922] Compiling SwiftGodot SceneState.swift
[1471/1922] Compiling SwiftGodot SceneTree.swift
[1472/1922] Compiling SwiftGodot SceneTreeTimer.swift
[1473/1922] Compiling SwiftGodot Script.swift
[1474/1922] Compiling SwiftGodot ScriptCreateDialog.swift
[1475/1922] Compiling SwiftGodot ScriptEditor.swift
[1476/1922] Compiling SwiftGodot ScriptEditorBase.swift
[1477/1922] Compiling SwiftGodot ScriptExtension.swift
[1478/1922] Compiling SwiftGodot ScriptLanguage.swift
[1479/1922] Compiling SwiftGodot ScriptLanguageExtension.swift
[1480/1922] Compiling SwiftGodot ScrollBar.swift
[1481/1922] Compiling SwiftGodot ScrollContainer.swift
[1482/1922] Compiling SwiftGodot SegmentShape2D.swift
[1483/1922] Compiling SwiftGodot Semaphore.swift
[1484/1922] Compiling SwiftGodot SeparationRayShape2D.swift
[1485/1922] Compiling SwiftGodot SeparationRayShape3D.swift
[1486/1922] Compiling SwiftGodot Separator.swift
[1487/1922] Compiling SwiftGodot Shader.swift
[1488/1922] Compiling SwiftGodot ShaderGlobalsOverride.swift
[1489/1922] Compiling SwiftGodot ShaderInclude.swift
[1490/1922] Compiling SwiftGodot ShaderIncludeDB.swift
[1491/1922] Compiling SwiftGodot ShaderMaterial.swift
[1517/1971] Compiling SwiftGodot PinJoint2D.swift
[1518/1971] Compiling SwiftGodot PinJoint3D.swift
[1519/1971] Compiling SwiftGodot PlaceholderCubemap.swift
[1520/1971] Compiling SwiftGodot PlaceholderCubemapArray.swift
[1521/1971] Compiling SwiftGodot PlaceholderMaterial.swift
[1522/1971] Compiling SwiftGodot PlaceholderMesh.swift
[1523/1971] Compiling SwiftGodot PlaceholderTexture2D.swift
[1524/1971] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[1525/1971] Compiling SwiftGodot PlaceholderTexture3D.swift
[1526/1971] Compiling SwiftGodot PlaceholderTextureLayered.swift
[1527/1971] Compiling SwiftGodot PlaneMesh.swift
[1528/1971] Compiling SwiftGodot PointLight2D.swift
[1529/1971] Compiling SwiftGodot PointMesh.swift
[1530/1971] Compiling SwiftGodot Polygon2D.swift
[1531/1971] Compiling SwiftGodot PolygonOccluder3D.swift
[1532/1971] Compiling SwiftGodot PolygonPathFinder.swift
[1533/1971] Compiling SwiftGodot Popup.swift
[1534/1971] Compiling SwiftGodot PopupMenu.swift
[1535/1971] Compiling SwiftGodot PopupPanel.swift
[1536/1971] Compiling SwiftGodot PortableCompressedTexture2D.swift
[1537/1971] Compiling SwiftGodot PrimitiveMesh.swift
[1538/1971] Compiling SwiftGodot PrismMesh.swift
[1539/1971] Compiling SwiftGodot ProceduralSkyMaterial.swift
[1540/1971] Compiling SwiftGodot ProgressBar.swift
[1541/1971] Compiling SwiftGodot ProjectSettings.swift
[1542/1996] Compiling SwiftGodot SoftBody3D.swift
[1543/1996] Compiling SwiftGodot SphereMesh.swift
[1544/1996] Compiling SwiftGodot SphereOccluder3D.swift
[1545/1996] Compiling SwiftGodot SphereShape3D.swift
[1546/1996] Compiling SwiftGodot SpinBox.swift
[1547/1996] Compiling SwiftGodot SplitContainer.swift
[1548/1996] Compiling SwiftGodot SpotLight3D.swift
[1549/1996] Compiling SwiftGodot SpringArm3D.swift
[1550/1996] Compiling SwiftGodot SpringBoneCollision3D.swift
[1551/1996] Compiling SwiftGodot SpringBoneCollisionCapsule3D.swift
[1552/1996] Compiling SwiftGodot SpringBoneCollisionPlane3D.swift
[1553/1996] Compiling SwiftGodot SpringBoneCollisionSphere3D.swift
[1554/1996] Compiling SwiftGodot SpringBoneSimulator3D.swift
[1555/1996] Compiling SwiftGodot Sprite2D.swift
[1556/1996] Compiling SwiftGodot Sprite3D.swift
[1557/1996] Compiling SwiftGodot SpriteBase3D.swift
[1558/1996] Compiling SwiftGodot SpriteFrames.swift
[1559/1996] Compiling SwiftGodot StandardMaterial3D.swift
[1560/1996] Compiling SwiftGodot StaticBody2D.swift
[1561/1996] Compiling SwiftGodot StaticBody3D.swift
[1562/1996] Compiling SwiftGodot StatusIndicator.swift
[1563/1996] Compiling SwiftGodot StreamPeer.swift
[1564/1996] Compiling SwiftGodot StreamPeerBuffer.swift
[1565/1996] Compiling SwiftGodot StreamPeerExtension.swift
[1566/1996] Compiling SwiftGodot StreamPeerGZIP.swift
[1567/2020] Compiling SwiftGodot PropertyTweener.swift
[1568/2020] Compiling SwiftGodot QuadMesh.swift
[1569/2020] Compiling SwiftGodot QuadOccluder3D.swift
[1570/2020] Compiling SwiftGodot RDAttachmentFormat.swift
[1571/2020] Compiling SwiftGodot RDFramebufferPass.swift
[1572/2020] Compiling SwiftGodot RDPipelineColorBlendState.swift
[1573/2020] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[1574/2020] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[1575/2020] Compiling SwiftGodot RDPipelineMultisampleState.swift
[1576/2020] Compiling SwiftGodot RDPipelineRasterizationState.swift
[1577/2020] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[1578/2020] Compiling SwiftGodot RDSamplerState.swift
[1579/2020] Compiling SwiftGodot RDShaderFile.swift
[1580/2020] Compiling SwiftGodot RDShaderSPIRV.swift
[1581/2020] Compiling SwiftGodot RDShaderSource.swift
[1582/2020] Compiling SwiftGodot RDTextureFormat.swift
[1583/2020] Compiling SwiftGodot RDTextureView.swift
[1584/2020] Compiling SwiftGodot RDUniform.swift
[1585/2020] Compiling SwiftGodot RDVertexAttribute.swift
[1586/2020] Compiling SwiftGodot RandomNumberGenerator.swift
[1587/2020] Compiling SwiftGodot Range.swift
[1588/2020] Compiling SwiftGodot RayCast2D.swift
[1589/2020] Compiling SwiftGodot RayCast3D.swift
[1590/2020] Compiling SwiftGodot RectangleShape2D.swift
[1591/2020] Compiling SwiftGodot RefCounted.swift
[1592/2045] Compiling SwiftGodot Shape2D.swift
[1593/2045] Compiling SwiftGodot Shape3D.swift
[1594/2045] Compiling SwiftGodot ShapeCast2D.swift
[1595/2045] Compiling SwiftGodot ShapeCast3D.swift
[1596/2045] Compiling SwiftGodot Shortcut.swift
[1597/2045] Compiling SwiftGodot Skeleton2D.swift
[1598/2045] Compiling SwiftGodot Skeleton3D.swift
[1599/2045] Compiling SwiftGodot SkeletonIK3D.swift
[1600/2045] Compiling SwiftGodot SkeletonModification2D.swift
[1601/2045] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[1602/2045] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[1603/2045] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[1604/2045] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[1605/2045] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[1606/2045] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[1607/2045] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[1608/2045] Compiling SwiftGodot SkeletonModificationStack2D.swift
[1609/2045] Compiling SwiftGodot SkeletonModifier3D.swift
[1610/2045] Compiling SwiftGodot SkeletonProfile.swift
[1611/2045] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[1612/2045] Compiling SwiftGodot Skin.swift
[1613/2045] Compiling SwiftGodot SkinReference.swift
[1614/2045] Compiling SwiftGodot Sky.swift
[1615/2045] Compiling SwiftGodot Slider.swift
[1616/2045] Compiling SwiftGodot SliderJoint3D.swift
[1642/2094] Compiling SwiftGodot VisualShaderNodeInput.swift
[1643/2094] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[1644/2094] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[1645/2094] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[1646/2094] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[1647/2094] Compiling SwiftGodot VisualShaderNodeIs.swift
[1648/2094] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[1649/2094] Compiling SwiftGodot VisualShaderNodeMix.swift
[1650/2094] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[1651/2094] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[1652/2094] Compiling SwiftGodot VisualShaderNodeOutput.swift
[1653/2094] Compiling SwiftGodot VisualShaderNodeParameter.swift
[1654/2094] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[1655/2094] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[1656/2094] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[1657/2094] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[1658/2094] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[1659/2094] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[1660/2094] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[1661/2094] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[1662/2094] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[1663/2094] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[1664/2094] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[1665/2094] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[1666/2118] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[1667/2118] Compiling SwiftGodot VisualShaderNodeComment.swift
[1668/2118] Compiling SwiftGodot VisualShaderNodeCompare.swift
[1669/2118] Compiling SwiftGodot VisualShaderNodeConstant.swift
[1670/2118] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[1671/2118] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[1672/2118] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[1673/2118] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[1674/2118] Compiling SwiftGodot VisualShaderNodeCustom.swift
[1675/2118] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[1676/2118] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[1677/2118] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[1678/2118] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[1679/2118] Compiling SwiftGodot VisualShaderNodeExpression.swift
[1680/2118] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[1681/2118] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[1682/2118] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[1683/2118] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[1684/2118] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[1685/2118] Compiling SwiftGodot VisualShaderNodeFrame.swift
[1686/2118] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[1687/2118] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[1688/2118] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[1689/2118] Compiling SwiftGodot VisualShaderNodeIf.swift
[1690/2142] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[1691/2142] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[1692/2142] Compiling SwiftGodot VisualShaderNodeRemap.swift
[1693/2142] Compiling SwiftGodot VisualShaderNodeReroute.swift
[1694/2142] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[1695/2142] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[1696/2142] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[1697/2142] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[1698/2142] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[1699/2142] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[1700/2142] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[1701/2142] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[1702/2142] Compiling SwiftGodot VisualShaderNodeStep.swift
[1703/2142] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[1704/2142] Compiling SwiftGodot VisualShaderNodeTexture.swift
[1705/2142] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[1706/2142] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[1707/2142] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[1708/2142] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[1709/2142] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[1710/2142] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[1711/2142] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[1712/2142] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[1713/2142] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[1714/2166] Compiling SwiftGodot VSlider.swift
[1715/2166] Compiling SwiftGodot VSplitContainer.swift
[1716/2166] Compiling SwiftGodot VehicleBody3D.swift
[1717/2166] Compiling SwiftGodot VehicleWheel3D.swift
[1718/2166] Compiling SwiftGodot VideoStream.swift
[1719/2166] Compiling SwiftGodot VideoStreamPlayback.swift
[1720/2166] Compiling SwiftGodot VideoStreamPlayer.swift
[1721/2166] Compiling SwiftGodot VideoStreamTheora.swift
[1722/2166] Compiling SwiftGodot Viewport.swift
[1723/2166] Compiling SwiftGodot ViewportTexture.swift
[1724/2166] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[1725/2166] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[1726/2166] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[1727/2166] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[1728/2166] Compiling SwiftGodot VisualInstance3D.swift
[1729/2166] Compiling SwiftGodot VisualShader.swift
[1730/2166] Compiling SwiftGodot VisualShaderNode.swift
[1731/2166] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[1732/2166] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[1733/2166] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[1734/2166] Compiling SwiftGodot VisualShaderNodeClamp.swift
[1735/2166] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[1736/2166] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[1737/2166] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[1738/2190] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[1739/2190] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[1740/2190] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[1741/2190] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[1742/2190] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[1743/2190] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[1744/2190] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[1745/2190] Compiling SwiftGodot PhysicsMaterial.swift
[1746/2190] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[1747/2190] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[1748/2190] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[1749/2190] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[1750/2190] Compiling SwiftGodot PhysicsServer2D.swift
[1751/2190] Compiling SwiftGodot PhysicsServer2DExtension.swift
[1752/2190] Compiling SwiftGodot PhysicsServer2DManager.swift
[1753/2190] Compiling SwiftGodot PhysicsServer3D.swift
[1754/2190] Compiling SwiftGodot PhysicsServer3DExtension.swift
[1755/2190] Compiling SwiftGodot PhysicsServer3DManager.swift
[1756/2190] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[1757/2190] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[1758/2190] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[1759/2190] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[1760/2190] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[1761/2190] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[1762/2190] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[1763/2190] Compiling SwiftGodot ResourceImporterBMFont.swift
[1764/2190] Compiling SwiftGodot ResourceImporterBitMap.swift
[1765/2190] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
[1766/2190] Compiling SwiftGodot ResourceImporterDynamicFont.swift
[1767/2190] Compiling SwiftGodot ResourceImporterImage.swift
[1768/2190] Compiling SwiftGodot ResourceImporterImageFont.swift
[1769/2190] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
[1770/2190] Compiling SwiftGodot ResourceImporterMP3.swift
[1771/2190] Compiling SwiftGodot ResourceImporterOBJ.swift
[1772/2190] Compiling SwiftGodot ResourceImporterOggVorbis.swift
[1773/2190] Compiling SwiftGodot ResourceImporterScene.swift
[1774/2190] Compiling SwiftGodot ResourceImporterShaderFile.swift
[1775/2190] Compiling SwiftGodot ResourceImporterTexture.swift
[1776/2190] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
[1777/2190] Compiling SwiftGodot ResourceImporterWAV.swift
[1778/2190] Compiling SwiftGodot ResourceLoader.swift
[1779/2190] Compiling SwiftGodot ResourcePreloader.swift
[1780/2190] Compiling SwiftGodot ResourceSaver.swift
[1781/2190] Compiling SwiftGodot ResourceUID.swift
[1782/2190] Compiling SwiftGodot RetargetModifier3D.swift
[1783/2190] Compiling SwiftGodot RibbonTrailMesh.swift
[1784/2190] Compiling SwiftGodot RichTextEffect.swift
[1785/2190] Compiling SwiftGodot RichTextLabel.swift
[1786/2190] Compiling SwiftGodot RigidBody2D.swift
[1787/2190] Compiling SwiftGodot RigidBody3D.swift
[1788/2215] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[1789/2215] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[1790/2215] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[1791/2215] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[1792/2215] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[1793/2215] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[1794/2215] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[1795/2215] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[1796/2215] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[1797/2215] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[1798/2215] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[1799/2215] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[1800/2215] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[1801/2215] Compiling SwiftGodot VisualShaderNodeVarying.swift
[1802/2215] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[1803/2215] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[1804/2215] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[1805/2215] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[1806/2215] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[1807/2215] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[1808/2215] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[1809/2215] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[1810/2215] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[1811/2215] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[1812/2215] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[1813/2215] Compiling SwiftGodot TileSetSource.swift
[1814/2215] Compiling SwiftGodot Time.swift
[1815/2215] Compiling SwiftGodot Timer.swift
[1816/2215] Compiling SwiftGodot TorusMesh.swift
[1817/2215] Compiling SwiftGodot TouchScreenButton.swift
[1818/2215] Compiling SwiftGodot Translation.swift
[1819/2215] Compiling SwiftGodot TranslationDomain.swift
[1820/2215] Compiling SwiftGodot TranslationServer.swift
[1821/2215] Compiling SwiftGodot Tree.swift
[1822/2215] Compiling SwiftGodot TreeItem.swift
[1823/2215] Compiling SwiftGodot TriangleMesh.swift
[1824/2215] Compiling SwiftGodot TubeTrailMesh.swift
[1825/2215] Compiling SwiftGodot Tween.swift
[1826/2215] Compiling SwiftGodot Tweener.swift
[1827/2215] Compiling SwiftGodot UDPServer.swift
[1828/2215] Compiling SwiftGodot UPNP.swift
[1829/2215] Compiling SwiftGodot UPNPDevice.swift
[1830/2215] Compiling SwiftGodot UndoRedo.swift
[1831/2215] Compiling SwiftGodot UniformSetCacheRD.swift
[1832/2215] Compiling SwiftGodot VBoxContainer.swift
[1833/2215] Compiling SwiftGodot VFlowContainer.swift
[1834/2215] Compiling SwiftGodot VScrollBar.swift
[1835/2215] Compiling SwiftGodot VSeparator.swift
[1836/2215] Compiling SwiftGodot RootMotionView.swift
[1837/2215] Compiling SwiftGodot SceneMultiplayer.swift
[1838/2215] Compiling SwiftGodot SceneReplicationConfig.swift
[1839/2215] Compiling SwiftGodot SceneState.swift
[1840/2215] Compiling SwiftGodot SceneTree.swift
[1841/2215] Compiling SwiftGodot SceneTreeTimer.swift
[1842/2215] Compiling SwiftGodot Script.swift
[1843/2215] Compiling SwiftGodot ScriptCreateDialog.swift
[1844/2215] Compiling SwiftGodot ScriptEditor.swift
[1845/2215] Compiling SwiftGodot ScriptEditorBase.swift
[1846/2215] Compiling SwiftGodot ScriptExtension.swift
[1847/2215] Compiling SwiftGodot ScriptLanguage.swift
[1848/2215] Compiling SwiftGodot ScriptLanguageExtension.swift
[1849/2215] Compiling SwiftGodot ScrollBar.swift
[1850/2215] Compiling SwiftGodot ScrollContainer.swift
[1851/2215] Compiling SwiftGodot SegmentShape2D.swift
[1852/2215] Compiling SwiftGodot Semaphore.swift
[1853/2215] Compiling SwiftGodot SeparationRayShape2D.swift
[1854/2215] Compiling SwiftGodot SeparationRayShape3D.swift
[1855/2215] Compiling SwiftGodot Separator.swift
[1856/2215] Compiling SwiftGodot Shader.swift
[1857/2215] Compiling SwiftGodot ShaderGlobalsOverride.swift
[1858/2215] Compiling SwiftGodot ShaderInclude.swift
[1859/2215] Compiling SwiftGodot ShaderIncludeDB.swift
[1860/2215] Compiling SwiftGodot ShaderMaterial.swift
[1861/2239] Compiling SwiftGodot ReferenceRect.swift
[1862/2239] Compiling SwiftGodot ReflectionProbe.swift
[1863/2239] Compiling SwiftGodot RegEx.swift
[1864/2239] Compiling SwiftGodot RegExMatch.swift
[1865/2239] Compiling SwiftGodot RemoteTransform2D.swift
[1866/2239] Compiling SwiftGodot RemoteTransform3D.swift
[1867/2239] Compiling SwiftGodot RenderData.swift
[1868/2239] Compiling SwiftGodot RenderDataExtension.swift
[1869/2239] Compiling SwiftGodot RenderDataRD.swift
[1870/2239] Compiling SwiftGodot RenderSceneBuffers.swift
[1871/2239] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
[1872/2239] Compiling SwiftGodot RenderSceneBuffersExtension.swift
[1873/2239] Compiling SwiftGodot RenderSceneBuffersRD.swift
[1874/2239] Compiling SwiftGodot RenderSceneData.swift
[1875/2239] Compiling SwiftGodot RenderSceneDataExtension.swift
[1876/2239] Compiling SwiftGodot RenderSceneDataRD.swift
[1877/2239] Compiling SwiftGodot RenderingDevice.swift
[1878/2239] Compiling SwiftGodot RenderingNativeSurface.swift
[1879/2239] Compiling SwiftGodot RenderingNativeSurfaceApple.swift
[1880/2239] Compiling SwiftGodot RenderingNativeSurfaceVulkan.swift
[1881/2239] Compiling SwiftGodot RenderingServer.swift
[1882/2239] Compiling SwiftGodot Resource.swift
[1883/2239] Compiling SwiftGodot ResourceFormatLoader.swift
[1884/2239] Compiling SwiftGodot ResourceFormatSaver.swift
[1885/2239] Compiling SwiftGodot ResourceImporter.swift
[1886/2239] Compiling SwiftGodot TextServerManager.swift
[1887/2239] Compiling SwiftGodot Texture.swift
[1888/2239] Compiling SwiftGodot Texture2D.swift
[1889/2239] Compiling SwiftGodot Texture2DArray.swift
[1890/2239] Compiling SwiftGodot Texture2DArrayRD.swift
[1891/2239] Compiling SwiftGodot Texture2DRD.swift
[1892/2239] Compiling SwiftGodot Texture3D.swift
[1893/2239] Compiling SwiftGodot Texture3DRD.swift
[1894/2239] Compiling SwiftGodot TextureButton.swift
[1895/2239] Compiling SwiftGodot TextureCubemapArrayRD.swift
[1896/2239] Compiling SwiftGodot TextureCubemapRD.swift
[1897/2239] Compiling SwiftGodot TextureLayered.swift
[1898/2239] Compiling SwiftGodot TextureLayeredRD.swift
[1899/2239] Compiling SwiftGodot TextureProgressBar.swift
[1900/2239] Compiling SwiftGodot TextureRect.swift
[1901/2239] Compiling SwiftGodot Theme.swift
[1902/2239] Compiling SwiftGodot ThemeDB.swift
[1903/2239] Compiling SwiftGodot Thread.swift
[1904/2239] Compiling SwiftGodot TileData.swift
[1905/2239] Compiling SwiftGodot TileMap.swift
[1906/2239] Compiling SwiftGodot TileMapLayer.swift
[1907/2239] Compiling SwiftGodot TileMapPattern.swift
[1908/2239] Compiling SwiftGodot TileSet.swift
[1909/2239] Compiling SwiftGodot TileSetAtlasSource.swift
[1935/2263] Compiling SwiftGodot SoftBody3D.swift
[1936/2263] Compiling SwiftGodot SphereMesh.swift
[1937/2263] Compiling SwiftGodot SphereOccluder3D.swift
[1938/2263] Compiling SwiftGodot SphereShape3D.swift
[1939/2263] Compiling SwiftGodot SpinBox.swift
[1940/2263] Compiling SwiftGodot SplitContainer.swift
[1941/2263] Compiling SwiftGodot SpotLight3D.swift
[1942/2263] Compiling SwiftGodot SpringArm3D.swift
[1943/2263] Compiling SwiftGodot SpringBoneCollision3D.swift
[1944/2263] Compiling SwiftGodot SpringBoneCollisionCapsule3D.swift
[1945/2263] Compiling SwiftGodot SpringBoneCollisionPlane3D.swift
[1946/2263] Compiling SwiftGodot SpringBoneCollisionSphere3D.swift
[1947/2263] Compiling SwiftGodot SpringBoneSimulator3D.swift
[1948/2263] Compiling SwiftGodot Sprite2D.swift
[1949/2263] Compiling SwiftGodot Sprite3D.swift
[1950/2263] Compiling SwiftGodot SpriteBase3D.swift
[1951/2263] Compiling SwiftGodot SpriteFrames.swift
[1952/2263] Compiling SwiftGodot StandardMaterial3D.swift
[1953/2263] Compiling SwiftGodot StaticBody2D.swift
[1954/2263] Compiling SwiftGodot StaticBody3D.swift
[1955/2263] Compiling SwiftGodot StatusIndicator.swift
[1956/2263] Compiling SwiftGodot StreamPeer.swift
[1957/2263] Compiling SwiftGodot StreamPeerBuffer.swift
[1958/2263] Compiling SwiftGodot StreamPeerExtension.swift
[1959/2263] Compiling SwiftGodot StreamPeerGZIP.swift
[1960/2287] Compiling SwiftGodot WorldEnvironment.swift
[1961/2287] Compiling SwiftGodot X509Certificate.swift
[1962/2287] Compiling SwiftGodot XMLParser.swift
[1963/2287] Compiling SwiftGodot XRAnchor3D.swift
[1964/2287] Compiling SwiftGodot XRBodyModifier3D.swift
[1965/2287] Compiling SwiftGodot XRBodyTracker.swift
[1966/2287] Compiling SwiftGodot XRCamera3D.swift
[1967/2287] Compiling SwiftGodot XRController3D.swift
[1968/2287] Compiling SwiftGodot XRControllerTracker.swift
[1969/2287] Compiling SwiftGodot XRFaceModifier3D.swift
[1970/2287] Compiling SwiftGodot XRFaceTracker.swift
[1971/2287] Compiling SwiftGodot XRHandModifier3D.swift
[1972/2287] Compiling SwiftGodot XRHandTracker.swift
[1973/2287] Compiling SwiftGodot XRInterface.swift
[1974/2287] Compiling SwiftGodot XRInterfaceExtension.swift
[1975/2287] Compiling SwiftGodot XRNode3D.swift
[1976/2287] Compiling SwiftGodot XROrigin3D.swift
[1977/2287] Compiling SwiftGodot XRPose.swift
[1978/2287] Compiling SwiftGodot XRPositionalTracker.swift
[1979/2287] Compiling SwiftGodot XRServer.swift
[1980/2287] Compiling SwiftGodot XRTracker.swift
[1981/2287] Compiling SwiftGodot XRVRS.swift
[1982/2287] Compiling SwiftGodot ZIPPacker.swift
[1983/2287] Compiling SwiftGodot ZIPReader.swift
[1984/2287] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[1985/2287] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[1986/2287] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[1987/2287] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[1988/2287] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[1989/2287] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[1990/2287] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[1991/2287] Compiling SwiftGodot VoxelGI.swift
[1992/2287] Compiling SwiftGodot VoxelGIData.swift
[1993/2287] Compiling SwiftGodot WeakRef.swift
[1994/2287] Compiling SwiftGodot WebRTCDataChannel.swift
[1995/2287] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[1996/2287] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[1997/2287] Compiling SwiftGodot WebRTCPeerConnection.swift
[1998/2287] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[1999/2287] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[2000/2287] Compiling SwiftGodot WebSocketPeer.swift
[2001/2287] Compiling SwiftGodot WebXRInterface.swift
[2002/2287] Compiling SwiftGodot Window.swift
[2003/2287] Compiling SwiftGodot WorkerThreadPool.swift
[2004/2287] Compiling SwiftGodot World2D.swift
[2005/2287] Compiling SwiftGodot World3D.swift
[2006/2287] Compiling SwiftGodot WorldBoundaryShape2D.swift
[2007/2287] Compiling SwiftGodot WorldBoundaryShape3D.swift
[2033/2311] Compiling SwiftGodot VSlider.swift
[2034/2311] Compiling SwiftGodot VSplitContainer.swift
[2035/2311] Compiling SwiftGodot VehicleBody3D.swift
[2036/2311] Compiling SwiftGodot VehicleWheel3D.swift
[2037/2311] Compiling SwiftGodot VideoStream.swift
[2038/2311] Compiling SwiftGodot VideoStreamPlayback.swift
[2039/2311] Compiling SwiftGodot VideoStreamPlayer.swift
[2040/2311] Compiling SwiftGodot VideoStreamTheora.swift
[2041/2311] Compiling SwiftGodot Viewport.swift
[2042/2311] Compiling SwiftGodot ViewportTexture.swift
[2043/2311] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[2044/2311] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[2045/2311] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[2046/2311] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[2047/2311] Compiling SwiftGodot VisualInstance3D.swift
[2048/2311] Compiling SwiftGodot VisualShader.swift
[2049/2311] Compiling SwiftGodot VisualShaderNode.swift
[2050/2311] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[2051/2311] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[2052/2311] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[2053/2311] Compiling SwiftGodot VisualShaderNodeClamp.swift
[2054/2311] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[2055/2311] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[2056/2311] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[2057/2335] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[2058/2335] Compiling SwiftGodot VisualShaderNodeComment.swift
[2059/2335] Compiling SwiftGodot VisualShaderNodeCompare.swift
[2060/2335] Compiling SwiftGodot VisualShaderNodeConstant.swift
[2061/2335] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[2062/2335] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[2063/2335] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[2064/2335] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[2065/2335] Compiling SwiftGodot VisualShaderNodeCustom.swift
[2066/2335] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[2067/2335] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[2068/2335] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[2069/2335] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[2070/2335] Compiling SwiftGodot VisualShaderNodeExpression.swift
[2071/2335] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[2072/2335] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[2073/2335] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[2074/2335] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[2075/2335] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[2076/2335] Compiling SwiftGodot VisualShaderNodeFrame.swift
[2077/2335] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[2078/2335] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[2079/2335] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[2080/2335] Compiling SwiftGodot VisualShaderNodeIf.swift
[2130/2407] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[2131/2407] Compiling SwiftGodot TileSetSource.swift
[2132/2407] Compiling SwiftGodot Time.swift
[2133/2407] Compiling SwiftGodot Timer.swift
[2134/2407] Compiling SwiftGodot TorusMesh.swift
[2135/2407] Compiling SwiftGodot TouchScreenButton.swift
[2136/2407] Compiling SwiftGodot Translation.swift
[2137/2407] Compiling SwiftGodot TranslationDomain.swift
[2138/2407] Compiling SwiftGodot TranslationServer.swift
[2139/2407] Compiling SwiftGodot Tree.swift
[2140/2407] Compiling SwiftGodot TreeItem.swift
[2141/2407] Compiling SwiftGodot TriangleMesh.swift
[2142/2407] Compiling SwiftGodot TubeTrailMesh.swift
[2143/2407] Compiling SwiftGodot Tween.swift
[2144/2407] Compiling SwiftGodot Tweener.swift
[2145/2407] Compiling SwiftGodot UDPServer.swift
[2146/2407] Compiling SwiftGodot UPNP.swift
[2147/2407] Compiling SwiftGodot UPNPDevice.swift
[2148/2407] Compiling SwiftGodot UndoRedo.swift
[2149/2407] Compiling SwiftGodot UniformSetCacheRD.swift
[2150/2407] Compiling SwiftGodot VBoxContainer.swift
[2151/2407] Compiling SwiftGodot VFlowContainer.swift
[2152/2407] Compiling SwiftGodot VScrollBar.swift
[2153/2407] Compiling SwiftGodot VSeparator.swift
[2154/2431] Compiling SwiftGodot VisualShaderNodeInput.swift
[2155/2431] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[2156/2431] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[2157/2431] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[2158/2431] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[2159/2431] Compiling SwiftGodot VisualShaderNodeIs.swift
[2160/2431] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[2161/2431] Compiling SwiftGodot VisualShaderNodeMix.swift
[2162/2431] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[2163/2431] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[2164/2431] Compiling SwiftGodot VisualShaderNodeOutput.swift
[2165/2431] Compiling SwiftGodot VisualShaderNodeParameter.swift
[2166/2431] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[2167/2431] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[2168/2431] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[2169/2431] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[2170/2431] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[2171/2431] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[2172/2431] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[2173/2431] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[2174/2431] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[2175/2431] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[2176/2431] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[2177/2431] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[2178/2431] Compiling SwiftGodot StreamPeerTCP.swift
[2179/2431] Compiling SwiftGodot StreamPeerTLS.swift
[2180/2431] Compiling SwiftGodot StyleBox.swift
[2181/2431] Compiling SwiftGodot StyleBoxEmpty.swift
[2182/2431] Compiling SwiftGodot StyleBoxFlat.swift
[2183/2431] Compiling SwiftGodot StyleBoxLine.swift
[2184/2431] Compiling SwiftGodot StyleBoxTexture.swift
[2185/2431] Compiling SwiftGodot SubViewport.swift
[2186/2431] Compiling SwiftGodot SubViewportContainer.swift
[2187/2431] Compiling SwiftGodot SubtweenTweener.swift
[2188/2431] Compiling SwiftGodot SurfaceTool.swift
[2189/2431] Compiling SwiftGodot SyntaxHighlighter.swift
[2190/2431] Compiling SwiftGodot SystemFont.swift
[2191/2431] Compiling SwiftGodot TCPServer.swift
[2192/2431] Compiling SwiftGodot TLSOptions.swift
[2193/2431] Compiling SwiftGodot TabBar.swift
[2194/2431] Compiling SwiftGodot TabContainer.swift
[2195/2431] Compiling SwiftGodot TextEdit.swift
[2196/2431] Compiling SwiftGodot TextLine.swift
[2197/2431] Compiling SwiftGodot TextMesh.swift
[2198/2431] Compiling SwiftGodot TextParagraph.swift
[2199/2431] Compiling SwiftGodot TextServer.swift
[2200/2431] Compiling SwiftGodot TextServerAdvanced.swift
[2201/2431] Compiling SwiftGodot TextServerDummy.swift
[2202/2431] Compiling SwiftGodot TextServerExtension.swift
[2203/2431] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[2204/2431] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[2205/2431] Compiling SwiftGodot VisualShaderNodeRemap.swift
[2206/2431] Compiling SwiftGodot VisualShaderNodeReroute.swift
[2207/2431] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[2208/2431] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[2209/2431] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[2210/2431] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[2211/2431] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[2212/2431] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[2213/2431] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[2214/2431] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[2215/2431] Compiling SwiftGodot VisualShaderNodeStep.swift
[2216/2431] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[2217/2431] Compiling SwiftGodot VisualShaderNodeTexture.swift
[2218/2431] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[2219/2431] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[2220/2431] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[2221/2431] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[2222/2431] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[2223/2431] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[2224/2431] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[2225/2431] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[2226/2431] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[2227/2431] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[2228/2431] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[2229/2431] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[2230/2431] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[2231/2431] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[2232/2431] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[2233/2431] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[2234/2431] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[2235/2431] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[2236/2431] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[2237/2431] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[2238/2431] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[2239/2431] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[2240/2431] Compiling SwiftGodot VisualShaderNodeVarying.swift
[2241/2431] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[2242/2431] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[2243/2431] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[2244/2431] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[2245/2431] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[2246/2431] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[2247/2431] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[2248/2431] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[2249/2431] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[2250/2431] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[2251/2431] Compiling SwiftGodot WorldEnvironment.swift
[2252/2431] Compiling SwiftGodot X509Certificate.swift
[2253/2431] Compiling SwiftGodot XMLParser.swift
[2254/2431] Compiling SwiftGodot XRAnchor3D.swift
[2255/2431] Compiling SwiftGodot XRBodyModifier3D.swift
[2256/2431] Compiling SwiftGodot XRBodyTracker.swift
[2257/2431] Compiling SwiftGodot XRCamera3D.swift
[2258/2431] Compiling SwiftGodot XRController3D.swift
[2259/2431] Compiling SwiftGodot XRControllerTracker.swift
[2260/2431] Compiling SwiftGodot XRFaceModifier3D.swift
[2261/2431] Compiling SwiftGodot XRFaceTracker.swift
[2262/2431] Compiling SwiftGodot XRHandModifier3D.swift
[2263/2431] Compiling SwiftGodot XRHandTracker.swift
[2264/2431] Compiling SwiftGodot XRInterface.swift
[2265/2431] Compiling SwiftGodot XRInterfaceExtension.swift
[2266/2431] Compiling SwiftGodot XRNode3D.swift
[2267/2431] Compiling SwiftGodot XROrigin3D.swift
[2268/2431] Compiling SwiftGodot XRPose.swift
[2269/2431] Compiling SwiftGodot XRPositionalTracker.swift
[2270/2431] Compiling SwiftGodot XRServer.swift
[2271/2431] Compiling SwiftGodot XRTracker.swift
[2272/2431] Compiling SwiftGodot XRVRS.swift
[2273/2431] Compiling SwiftGodot ZIPPacker.swift
[2274/2431] Compiling SwiftGodot ZIPReader.swift
[2275/2431] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[2276/2431] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[2277/2431] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[2278/2431] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[2279/2431] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[2280/2431] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[2281/2431] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[2282/2431] Compiling SwiftGodot VoxelGI.swift
[2283/2431] Compiling SwiftGodot VoxelGIData.swift
[2284/2431] Compiling SwiftGodot WeakRef.swift
[2285/2431] Compiling SwiftGodot WebRTCDataChannel.swift
[2286/2431] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[2287/2431] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[2288/2431] Compiling SwiftGodot WebRTCPeerConnection.swift
[2289/2431] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[2290/2431] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[2291/2431] Compiling SwiftGodot WebSocketPeer.swift
[2292/2431] Compiling SwiftGodot WebXRInterface.swift
[2293/2431] Compiling SwiftGodot Window.swift
[2294/2431] Compiling SwiftGodot WorkerThreadPool.swift
[2295/2431] Compiling SwiftGodot World2D.swift
[2296/2431] Compiling SwiftGodot World3D.swift
[2297/2431] Compiling SwiftGodot WorldBoundaryShape2D.swift
[2298/2431] Compiling SwiftGodot WorldBoundaryShape3D.swift
[2374/2431] Emitting module SwiftGodot
[2400/2431] Write Objects.LinkFileList
[2402/2446] Emitting module ManualExtension
[2403/2446] Compiling ManualExtension ManualExtension.swift
[2403/2446] Write Objects.LinkFileList
[2405/2446] Emitting module SimpleExtension
[2406/2446] Compiling SimpleExtension SimpleExtension.swift
[2407/2446] Compiling SimpleExtension EntryPoint.generated.swift
[2407/2446] Write Objects.LinkFileList
[2433/2446] Linking libSwiftGodot.dylib
[2434/2456] Linking libManualExtension.dylib
[2435/2456] Linking libSimpleExtension.dylib
[2437/2456] Compiling SwiftGodotTestability GodotTestHost.swift
[2439/2456] Emitting module SwiftGodotTestability
[2440/2456] Compiling SwiftGodotTestability EmbeddingController.swift
[2441/2456] Compiling SwiftGodotTestability SimpleTestHost.swift
[2442/2456] Compiling SwiftGodotTestability SilentTestRun.swift
[2443/2456] Compiling SwiftGodotTestability TestHost.swift
[2444/2456] Compiling SwiftGodotTestability EmbeddedTestCase.swift
[2445/2456] Compiling SwiftGodotTestability EmbeddedTestCaseSuite.swift
[2446/2456] Compiling SwiftGodotTestability GodotRuntime.swift
[2447/2456] Compiling SwiftGodotTestability GodotTestCase.swift
[2448/2456] Compiling SwiftGodotTestability TestHost.swift
[2449/2456] Compiling SwiftGodotTestability SimpleTestHost.swift
[2450/2456] Compiling SwiftGodotTestability SilentTestRun.swift
[2451/2456] Compiling SwiftGodotTestability EmbeddedTestCaseSuite.swift
[2452/2456] Compiling SwiftGodotTestability GodotTestCase.swift
[2453/2456] Compiling SwiftGodotTestability EmbeddedTestCase.swift
[2454/2456] Emitting module SwiftGodotTestability
[2455/2456] Compiling SwiftGodotTestability EmbeddingController.swift
[2456/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,
BUILD FAILURE 6.1 macosSpm