Build Information
Successful build of SwiftGodotKit, reference 4.3.5 (1a720b
), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 00:31:10 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
404 |
405 | let propertyOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: property.getter)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:530:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
528 | let construct: String
529 |
530 | if let _ = classMap [arg.type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
531 | argUnwrap += "var ptr_\(argIdx): UnsafeMutableRawPointer?\n"
532 | argUnwrap += "args [\(argIdx)].toType (Variant.GType.object, dest: &ptr_\(argIdx))\n"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:678:24: error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
676 | p.staticVar(visibility: "public ", name: "shared", type: cdef.name) {
677 | p ("return withUnsafePointer (to: &\(cdef.name).godotClassName.content)", arg: " ptr in") {
678 | if hasSubclasses.contains(cdef.name) {
| `- error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
679 | p ("lookupObject (nativeHandle: gi.global_get_singleton (ptr)!)!")
680 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:68:5: note: var declared here
66 | // for handle -> Swift type using `lookupObject` rather than creating
67 | // a plain wrapper directly from the handle
68 | var hasSubclasses = Set<String> ()
| `- note: var declared here
69 |
70 | for x in jsonApi.classes {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[17/23] Emitting module Generator
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:180:42: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
178 | }
179 | let godotReturnType = method.returnValue?.type
180 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
181 | let returnOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: className, method: method.name)
182 | let returnType = getGodotType (method.returnValue) + (returnOptional ? "?" : "")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:340:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
338 | if args != "" { args += ", " }
339 | var isRefOptional = false
340 | if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
341 | isRefOptional = isRefParameterOptional (className: className, method: method.name, arg: arg.name)
342 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:426:20: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
424 | } else {
425 | argref = escapeSwift (snakeToCamel (arg.name))
426 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
427 | optstorage = ""
428 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:429:24: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
427 | optstorage = ""
428 | } else {
429 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
430 | optstorage = ".content"
431 | } else if arg.type.starts(with: "typedarray::") {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
[18/23] Compiling Generator Arguments.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:68:98: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
66 | // - typedarrays, the default values need to be handled one by one, or a general conversion
67 | // system needs to be implemented
68 | if !argumentType.starts(with: "Array") && !argumentType.starts(with: "bitfield::") && (!(isStructMap [argumentType] ?? false) || isPrimitiveType(name: argumentType)) && argumentType != "NodePath" && !argumentType.starts(with: "typedarray::") && !argumentType.starts (with: "Dictionary") && dv != "null" {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
69 | if argument.type == "String" {
70 | def = " = \(dv)"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:188:10: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
187 | var needAddress = "&"
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:190:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
191 | optstorage = ""
192 | } else if arg.type == "String" && mapStringToSwift {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:196:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
194 | optstorage = ".content"
195 | } else {
196 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
197 | optstorage = ".content"
198 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:207:9: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
205 | optstorage = ""
206 | }
207 | if (isStructMap [arg.type] ?? false) {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
208 | return "\(needAddress)\(escapeSwift(argref))\(optstorage)"
209 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:221:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
212 | }
213 |
214 | func generateCopies (_ args: [JGodotArgument]) -> String {
| `- note: add '@MainActor' to make global function 'generateCopies' part of global actor 'MainActor'
215 | var body = ""
216 |
:
219 | var reference = godotArgumentToSwift (arg.name)
220 |
221 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
222 | if arg.type == "float" {
223 | reference = "Double (\(reference))"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:94:20: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
84 | }
85 |
86 | func generateBuiltinCtors (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateBuiltinCtors(_:_:_:godotTypeName:typeName:typeEnum:members:)' part of global actor 'MainActor'
87 | _ bc: JGodotBuiltinClass,
88 | _ ctors: [JGodotConstructor],
:
92 | members: [JGodotArgument]?)
93 | {
94 | let isStruct = isStructMap [typeName] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
95 |
96 | for m in ctors {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:237:24: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
235 | let ptrResult: String
236 | if has_return {
237 | let isStruct = isStructMap [godotReturnType ?? ""] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
238 | if isStruct {
239 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:261:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
259 | p ("\(typeName).\(methodToCall) (nil, \(ptrArgs), \(ptrResult)\(numberOfArgs))")
260 | } else {
261 | if isStructMap [typeName] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
262 | p ("withUnsafePointer (to: self) { ptr in ")
263 | p (" \(typeName).\(methodToCall) (UnsafeMutableRawPointer (mutating: ptr), \(ptrArgs), \(ptrResult)\(numberOfArgs))")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:338:32: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
336 | p ("\(declType) result: \(retType) = \(retType)()")
337 | }
338 | let isStruct = isStructMap [op.returnType] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
339 | if isStruct {
340 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:667:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
665 | storedMembers = bc.members
666 | } else {
667 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
668 | storedMembers = memberOffsets.compactMap({ m in
669 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:97:5: note: var declared here
95 | }
96 | }
97 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
98 | for mo in jsonApi.builtinClassMemberOffsets {
99 | if mo.buildConfiguration == buildConfiguration {
[19/23] Compiling Generator BuiltinGen.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:68:98: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
66 | // - typedarrays, the default values need to be handled one by one, or a general conversion
67 | // system needs to be implemented
68 | if !argumentType.starts(with: "Array") && !argumentType.starts(with: "bitfield::") && (!(isStructMap [argumentType] ?? false) || isPrimitiveType(name: argumentType)) && argumentType != "NodePath" && !argumentType.starts(with: "typedarray::") && !argumentType.starts (with: "Dictionary") && dv != "null" {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
69 | if argument.type == "String" {
70 | def = " = \(dv)"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:188:10: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
187 | var needAddress = "&"
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:190:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
191 | optstorage = ""
192 | } else if arg.type == "String" && mapStringToSwift {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:196:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
194 | optstorage = ".content"
195 | } else {
196 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
197 | optstorage = ".content"
198 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:207:9: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
205 | optstorage = ""
206 | }
207 | if (isStructMap [arg.type] ?? false) {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
208 | return "\(needAddress)\(escapeSwift(argref))\(optstorage)"
209 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:221:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
212 | }
213 |
214 | func generateCopies (_ args: [JGodotArgument]) -> String {
| `- note: add '@MainActor' to make global function 'generateCopies' part of global actor 'MainActor'
215 | var body = ""
216 |
:
219 | var reference = godotArgumentToSwift (arg.name)
220 |
221 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
222 | if arg.type == "float" {
223 | reference = "Double (\(reference))"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:94:20: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
84 | }
85 |
86 | func generateBuiltinCtors (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateBuiltinCtors(_:_:_:godotTypeName:typeName:typeEnum:members:)' part of global actor 'MainActor'
87 | _ bc: JGodotBuiltinClass,
88 | _ ctors: [JGodotConstructor],
:
92 | members: [JGodotArgument]?)
93 | {
94 | let isStruct = isStructMap [typeName] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
95 |
96 | for m in ctors {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:237:24: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
235 | let ptrResult: String
236 | if has_return {
237 | let isStruct = isStructMap [godotReturnType ?? ""] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
238 | if isStruct {
239 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:261:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
259 | p ("\(typeName).\(methodToCall) (nil, \(ptrArgs), \(ptrResult)\(numberOfArgs))")
260 | } else {
261 | if isStructMap [typeName] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
262 | p ("withUnsafePointer (to: self) { ptr in ")
263 | p (" \(typeName).\(methodToCall) (UnsafeMutableRawPointer (mutating: ptr), \(ptrArgs), \(ptrResult)\(numberOfArgs))")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:338:32: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
336 | p ("\(declType) result: \(retType) = \(retType)()")
337 | }
338 | let isStruct = isStructMap [op.returnType] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
339 | if isStruct {
340 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:667:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
665 | storedMembers = bc.members
666 | } else {
667 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
668 | storedMembers = memberOffsets.compactMap({ m in
669 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:97:5: note: var declared here
95 | }
96 | }
97 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
98 | for mo in jsonApi.builtinClassMemberOffsets {
99 | if mo.buildConfiguration == buildConfiguration {
[20/23] Compiling Generator main.swift
[1/1] Compiling plugin CodeGeneratorPlugin
Building for debugging...
[1/50] Write sources
[2/50] Write TrivialSample-entitlement.plist
[3/50] Write UglySample-entitlement.plist
[4/50] Write sources
[4/50] Copying libgodot.dylib
[10/50] Write sources
[22/50] Write Properties-entitlement.plist
[22/50] Write sources
[26/50] Write Dodge-entitlement.plist
[27/50] Copying Project
[28/50] Write swift-version-2F0A5646E1D333AE.txt
[29/50] Compiling GDExtension GDExtensionSupport.c
[31/57] Compiling SwiftSyntax510 Empty.swift
[32/57] Emitting module SwiftSyntax510
[33/57] Emitting module SwiftSyntax509
[34/57] Compiling SwiftSyntax509 Empty.swift
[35/119] Emitting module ExtensionApi
[36/119] Compiling ExtensionApi ApiJsonModel+Extra.swift
[37/119] Compiling ExtensionApi ApiJsonModel.swift
[38/131] Compiling Generator Printer.swift
[39/132] Compiling Generator UtilityGen.swift
[40/132] Compiling Generator MethodGen.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:180:42: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
178 | }
179 | let godotReturnType = method.returnValue?.type
180 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
181 | let returnOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: className, method: method.name)
182 | let returnType = getGodotType (method.returnValue) + (returnOptional ? "?" : "")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:241:27: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
223 | }
224 |
225 | func getResultPtr() -> String {
| `- note: add '@MainActor' to make local function 'getResultPtr()' part of global actor 'MainActor'
226 | let ptrResult: String
227 | if returnType != "" {
:
239 | } else if frameworkType {
240 | ptrResult = "&_result"
241 | } else if builtinSizes [godotReturnType] != nil {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
242 | ptrResult = "&_result.content"
243 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:340:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
338 | if args != "" { args += ", " }
339 | var isRefOptional = false
340 | if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
341 | isRefOptional = isRefParameterOptional (className: className, method: method.name, arg: arg.name)
342 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:426:20: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
424 | } else {
425 | argref = escapeSwift (snakeToCamel (arg.name))
426 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
427 | optstorage = ""
428 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:429:24: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
427 | optstorage = ""
428 | } else {
429 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
430 | optstorage = ".content"
431 | } else if arg.type.starts(with: "typedarray::") {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
[41/132] Compiling Generator TypeHelpers.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/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/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:57:5: note: var declared here
55 | }
56 |
57 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: var declared here
58 |
59 | print ("Running with projectDir=$(projectDir) and output=\(outputDir)")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/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/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/TypeHelpers.swift:335:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
233 | ///
234 | ///
235 | func getGodotType (_ t: TypeWithMeta?, kind: ArgumentKind = .classes) -> String {
| `- note: add '@MainActor' to make global function 'getGodotType(_:kind:)' part of global actor 'MainActor'
236 | guard let t else {
237 | return ""
:
333 | let nested = SimpleType(type: nestedTypeName, meta: nil)
334 |
335 | if classMap [nestedTypeName] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
336 | return "ObjectCollection<\(getGodotType (nested))>"
337 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/TypeHelpers.swift:353:22: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
350 | /// containing the Swift-type that is used to store this, and a suitable initialization
351 | /// value for it.
352 | func getBuiltinStorage (_ name: String) -> (String, String) {
| `- note: add '@MainActor' to make global function 'getBuiltinStorage' part of global actor 'MainActor'
353 | guard let size = builtinSizes [name] else {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
354 | fatalError()
355 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
[42/132] Compiling Generator Enums.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Enums.swift:23:22: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
10 |
11 | // The name of the form 'bitfield::'
12 | func findEnumDef (name: String) -> JGodotGlobalEnumElement? {
| `- note: add '@MainActor' to make global function 'findEnumDef(name:)' part of global actor 'MainActor'
13 | guard name.starts(with: "bitfield::") else {
14 | return nil
:
21 | }
22 | let type = full [full.startIndex..<split]
23 | guard let cdef = classMap [String (type)] else {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
24 | print ("Could not find class \(type) for \(name)")
25 | return nil
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Enums.swift:139:13: error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
38 | }
39 |
40 | func generateEnums (_ p: Printer, cdef: JClassInfo?, values: [JGodotGlobalEnumElement], prefix: String?) {
| `- note: add '@MainActor' to make global function 'generateEnums(_:cdef:values:prefix:)' part of global actor 'MainActor'
41 | for enumDef in values {
42 | let isBitField = enumDef.isBitfield ?? false
:
137 | }
138 | if let prefix {
139 | globalEnums [prefix + enumDef.name] = enumDef
| `- error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
140 | }
141 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:57:5: note: mutation of this var is only permitted within the actor
55 | }
56 |
57 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: mutation of this var is only permitted within the actor
58 |
59 | print ("Running with projectDir=$(projectDir) and output=\(outputDir)")
[43/132] Compiling Generator StringOperations.swift
[44/132] Compiling Generator ClassGen.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:37:12: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
18 | var typeToChildren: [String:[String]] = [:]
19 |
20 | func makeDefaultInit (godotType: String, initCollection: String = "") -> String {
| `- note: add '@MainActor' to make global function 'makeDefaultInit(godotType:initCollection:)' part of global actor 'MainActor'
21 | switch godotType {
22 | case "int":
:
35 | let nestedTypeName = String (t.dropFirst(12))
36 | let simple = SimpleType(type: nestedTypeName)
37 | if classMap [nestedTypeName] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
38 | return "ObjectCollection<\(getGodotType (simple))>(\(initCollection))"
39 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:66:8: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
63 | }
64 |
65 | func argTypeNeedsCopy (godotType: String) -> Bool {
| `- note: add '@MainActor' to make global function 'argTypeNeedsCopy(godotType:)' part of global actor 'MainActor'
66 | if isStructMap [godotType] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
67 | return true
68 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:91:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
76 | }
77 |
78 | func generateVirtualProxy (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateVirtualProxy(_:cdef:methodName:method:)' part of global actor 'MainActor'
79 | cdef: JGodotExtensionAPIClass,
80 | methodName: String,
:
89 | if let ret = method.returnValue {
90 | let godotReturnType = ret.type
91 | let godotReturnTypeIsReferenceType = classMap [godotReturnType] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
92 | returnOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: methodName)
93 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:119:23: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
117 | if arg.type == "String" {
118 | argCall += "GString.stringFromGStringPtr (ptr: args [\(i)]!) ?? \"\""
119 | } else if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
120 | //
121 | // This idiom guarantees that: if this is a known object, we surface this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:126:20: error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
124 | argPrep += "let resolved_\(i) = args [\(i)]!.load (as: UnsafeRawPointer.self)\n"
125 | let handleResolver: String
126 | if hasSubclasses.contains(cdef.name) {
| `- error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
127 | // If the type we are bubbling up has subclasses, we want to create the most
128 | // derived type if possible, so we perform the longer lookup
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:68:5: note: var declared here
66 | // for handle -> Swift type using `lookupObject` rather than creating
67 | // a plain wrapper directly from the handle
68 | var hasSubclasses = Set<String> ()
| `- note: var declared here
69 |
70 | for x in jsonApi.classes {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:157:16: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
155 | }
156 | if let ret = method.returnValue {
157 | if isStructMap [ret.type] ?? false || isStructMap [virtRet ?? "NON_EXIDTENT"] ?? false || ret.type.starts(with: "bitfield::"){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
158 | p ("retPtr!.storeBytes (of: ret, as: \(virtRet!).self)")
159 | } else if ret.type.starts(with: "enum::") {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:157:51: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
155 | }
156 | if let ret = method.returnValue {
157 | if isStructMap [ret.type] ?? false || isStructMap [virtRet ?? "NON_EXIDTENT"] ?? false || ret.type.starts(with: "bitfield::"){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
158 | p ("retPtr!.storeBytes (of: ret, as: \(virtRet!).self)")
159 | } else if ret.type.starts(with: "enum::") {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:169:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
167 | derefField = "array.content"
168 | derefType = "type (of: ret.array.content)"
169 | } else if classMap [ret.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
170 | derefField = "handle"
171 | derefType = "UnsafeRawPointer?.self"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:181:30: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
179 | target = "array.content"
180 | } else {
181 | target = classMap [ret.type] != nil ? "handle" : "content"
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
182 | }
183 | p ("retPtr!.storeBytes (of: ret\(returnOptional ? "?" : "").\(derefField), as: \(derefType)) // \(ret.type)")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:321:20: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
310 | p ("\n/* Properties */\n")
311 |
312 | 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'
313 | if let here = methods.first(where: { $0.name == name}) {
314 | return here
:
319 | return nil
320 | }
321 | cdef = classMap [parentName]
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
322 | guard let cdef else {
323 | print ("Warning: Missing type \(parentName)")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:403:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
301 | }
302 | }
303 | func generateProperties (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateProperties(_:cdef:_:_:_:asSingleton:)' part of global actor 'MainActor'
304 | cdef: JGodotExtensionAPIClass,
305 | _ properties: [JGodotProperty],
:
401 | }
402 | let godotReturnType = method.returnValue?.type
403 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
404 |
405 | let propertyOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: property.getter)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:530:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
528 | let construct: String
529 |
530 | if let _ = classMap [arg.type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
531 | argUnwrap += "var ptr_\(argIdx): UnsafeMutableRawPointer?\n"
532 | argUnwrap += "args [\(argIdx)].toType (Variant.GType.object, dest: &ptr_\(argIdx))\n"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:678:24: error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
676 | p.staticVar(visibility: "public ", name: "shared", type: cdef.name) {
677 | p ("return withUnsafePointer (to: &\(cdef.name).godotClassName.content)", arg: " ptr in") {
678 | if hasSubclasses.contains(cdef.name) {
| `- error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
679 | p ("lookupObject (nativeHandle: gi.global_get_singleton (ptr)!)!")
680 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:68:5: note: var declared here
66 | // for handle -> Swift type using `lookupObject` rather than creating
67 | // a plain wrapper directly from the handle
68 | var hasSubclasses = Set<String> ()
| `- note: var declared here
69 |
70 | for x in jsonApi.classes {
[45/132] Compiling Generator Data.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:37:12: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
18 | var typeToChildren: [String:[String]] = [:]
19 |
20 | func makeDefaultInit (godotType: String, initCollection: String = "") -> String {
| `- note: add '@MainActor' to make global function 'makeDefaultInit(godotType:initCollection:)' part of global actor 'MainActor'
21 | switch godotType {
22 | case "int":
:
35 | let nestedTypeName = String (t.dropFirst(12))
36 | let simple = SimpleType(type: nestedTypeName)
37 | if classMap [nestedTypeName] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
38 | return "ObjectCollection<\(getGodotType (simple))>(\(initCollection))"
39 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:66:8: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
63 | }
64 |
65 | func argTypeNeedsCopy (godotType: String) -> Bool {
| `- note: add '@MainActor' to make global function 'argTypeNeedsCopy(godotType:)' part of global actor 'MainActor'
66 | if isStructMap [godotType] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
67 | return true
68 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:91:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
76 | }
77 |
78 | func generateVirtualProxy (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateVirtualProxy(_:cdef:methodName:method:)' part of global actor 'MainActor'
79 | cdef: JGodotExtensionAPIClass,
80 | methodName: String,
:
89 | if let ret = method.returnValue {
90 | let godotReturnType = ret.type
91 | let godotReturnTypeIsReferenceType = classMap [godotReturnType] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
92 | returnOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: methodName)
93 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:119:23: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
117 | if arg.type == "String" {
118 | argCall += "GString.stringFromGStringPtr (ptr: args [\(i)]!) ?? \"\""
119 | } else if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
120 | //
121 | // This idiom guarantees that: if this is a known object, we surface this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:126:20: error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
124 | argPrep += "let resolved_\(i) = args [\(i)]!.load (as: UnsafeRawPointer.self)\n"
125 | let handleResolver: String
126 | if hasSubclasses.contains(cdef.name) {
| `- error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
127 | // If the type we are bubbling up has subclasses, we want to create the most
128 | // derived type if possible, so we perform the longer lookup
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:68:5: note: var declared here
66 | // for handle -> Swift type using `lookupObject` rather than creating
67 | // a plain wrapper directly from the handle
68 | var hasSubclasses = Set<String> ()
| `- note: var declared here
69 |
70 | for x in jsonApi.classes {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:157:16: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
155 | }
156 | if let ret = method.returnValue {
157 | if isStructMap [ret.type] ?? false || isStructMap [virtRet ?? "NON_EXIDTENT"] ?? false || ret.type.starts(with: "bitfield::"){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
158 | p ("retPtr!.storeBytes (of: ret, as: \(virtRet!).self)")
159 | } else if ret.type.starts(with: "enum::") {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:157:51: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
155 | }
156 | if let ret = method.returnValue {
157 | if isStructMap [ret.type] ?? false || isStructMap [virtRet ?? "NON_EXIDTENT"] ?? false || ret.type.starts(with: "bitfield::"){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
158 | p ("retPtr!.storeBytes (of: ret, as: \(virtRet!).self)")
159 | } else if ret.type.starts(with: "enum::") {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:169:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
167 | derefField = "array.content"
168 | derefType = "type (of: ret.array.content)"
169 | } else if classMap [ret.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
170 | derefField = "handle"
171 | derefType = "UnsafeRawPointer?.self"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:181:30: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
179 | target = "array.content"
180 | } else {
181 | target = classMap [ret.type] != nil ? "handle" : "content"
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
182 | }
183 | p ("retPtr!.storeBytes (of: ret\(returnOptional ? "?" : "").\(derefField), as: \(derefType)) // \(ret.type)")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:321:20: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
310 | p ("\n/* Properties */\n")
311 |
312 | 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'
313 | if let here = methods.first(where: { $0.name == name}) {
314 | return here
:
319 | return nil
320 | }
321 | cdef = classMap [parentName]
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
322 | guard let cdef else {
323 | print ("Warning: Missing type \(parentName)")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:403:46: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
301 | }
302 | }
303 | func generateProperties (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateProperties(_:cdef:_:_:_:asSingleton:)' part of global actor 'MainActor'
304 | cdef: JGodotExtensionAPIClass,
305 | _ properties: [JGodotProperty],
:
401 | }
402 | let godotReturnType = method.returnValue?.type
403 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
404 |
405 | let propertyOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: cdef.name, method: property.getter)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:530:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
528 | let construct: String
529 |
530 | if let _ = classMap [arg.type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
531 | argUnwrap += "var ptr_\(argIdx): UnsafeMutableRawPointer?\n"
532 | argUnwrap += "args [\(argIdx)].toType (Variant.GType.object, dest: &ptr_\(argIdx))\n"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/ClassGen.swift:678:24: error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
676 | p.staticVar(visibility: "public ", name: "shared", type: cdef.name) {
677 | p ("return withUnsafePointer (to: &\(cdef.name).godotClassName.content)", arg: " ptr in") {
678 | if hasSubclasses.contains(cdef.name) {
| `- error: main actor-isolated var 'hasSubclasses' can not be referenced from a nonisolated context
679 | p ("lookupObject (nativeHandle: gi.global_get_singleton (ptr)!)!")
680 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:68:5: note: var declared here
66 | // for handle -> Swift type using `lookupObject` rather than creating
67 | // a plain wrapper directly from the handle
68 | var hasSubclasses = Set<String> ()
| `- note: var declared here
69 |
70 | for x in jsonApi.classes {
[46/132] Compiling Generator DocModel.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/DocModel.swift:96:35: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
94 | }
95 | let (type, name) = splitAtLastDot(str: txt)
96 | if type != "", let ldef = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
97 | if let r = lookInDef(def: ldef, match: name, local: false) {
98 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/DocModel.swift:153:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
131 | }
132 |
133 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
134 | if txt.starts(with: "@") {
135 | // TODO, examples:
:
151 | var args = ""
152 | if let type {
153 | if let m = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
154 | if let method = findMethod (name: member, on: m) {
155 | args = assembleArgs (method, method.arguments)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/DocModel.swift:157:31: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
131 | }
132 |
133 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
134 | if txt.starts(with: "@") {
135 | // TODO, examples:
:
155 | args = assembleArgs (method, method.arguments)
156 | }
157 | } else if let m = builtinMap [type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
158 | if let method = findMethod (name: member, on: m) {
159 | args = assembleArgs(nil, method.arguments)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:77:5: note: var declared here
75 | }
76 |
77 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
78 |
79 | for x in jsonApi.builtinClasses {
[47/132] Compiling SwiftSyntax AbsolutePosition.swift
[48/132] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[49/132] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[50/132] Compiling SwiftSyntax Assert.swift
[51/132] Compiling SwiftSyntax BumpPtrAllocator.swift
[52/132] Compiling SwiftSyntax CommonAncestor.swift
[53/132] Compiling SwiftSyntax Convenience.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[54/138] Emitting module Generator
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:180:42: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
178 | }
179 | let godotReturnType = method.returnValue?.type
180 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
181 | let returnOptional = godotReturnTypeIsReferenceType && isReturnOptional(className: className, method: method.name)
182 | let returnType = getGodotType (method.returnValue) + (returnOptional ? "?" : "")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:340:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
338 | if args != "" { args += ", " }
339 | var isRefOptional = false
340 | if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
341 | isRefOptional = isRefParameterOptional (className: className, method: method.name, arg: arg.name)
342 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:62:5: note: var declared here
60 |
61 | // Maps from a the class name to its definition
62 | var classMap: [String:JGodotExtensionAPIClass] = [:]
| `- note: var declared here
63 |
64 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:426:20: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
424 | } else {
425 | argref = escapeSwift (snakeToCamel (arg.name))
426 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
427 | optstorage = ""
428 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/MethodGen.swift:429:24: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
86 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
87 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
88 | func methodGen (_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, kind: MethodGenType, asSingleton: Bool) -> String? {
| `- note: add '@MainActor' to make global function 'methodGen(_:method:className:cdef:usedMethods:kind:asSingleton:)' part of global actor 'MainActor'
89 | var registerVirtualMethodName: String? = nil
90 |
:
427 | optstorage = ""
428 | } else {
429 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
430 | optstorage = ".content"
431 | } else if arg.type.starts(with: "typedarray::") {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
[55/138] Compiling Generator Arguments.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:68:98: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
66 | // - typedarrays, the default values need to be handled one by one, or a general conversion
67 | // system needs to be implemented
68 | if !argumentType.starts(with: "Array") && !argumentType.starts(with: "bitfield::") && (!(isStructMap [argumentType] ?? false) || isPrimitiveType(name: argumentType)) && argumentType != "NodePath" && !argumentType.starts(with: "typedarray::") && !argumentType.starts (with: "Dictionary") && dv != "null" {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
69 | if argument.type == "String" {
70 | def = " = \(dv)"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:188:10: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
187 | var needAddress = "&"
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:190:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
191 | optstorage = ""
192 | } else if arg.type == "String" && mapStringToSwift {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:196:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
194 | optstorage = ".content"
195 | } else {
196 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
197 | optstorage = ".content"
198 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:207:9: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
205 | optstorage = ""
206 | }
207 | if (isStructMap [arg.type] ?? false) {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
208 | return "\(needAddress)\(escapeSwift(argref))\(optstorage)"
209 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:221:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
212 | }
213 |
214 | func generateCopies (_ args: [JGodotArgument]) -> String {
| `- note: add '@MainActor' to make global function 'generateCopies' part of global actor 'MainActor'
215 | var body = ""
216 |
:
219 | var reference = godotArgumentToSwift (arg.name)
220 |
221 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
222 | if arg.type == "float" {
223 | reference = "Double (\(reference))"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:94:20: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
84 | }
85 |
86 | func generateBuiltinCtors (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateBuiltinCtors(_:_:_:godotTypeName:typeName:typeEnum:members:)' part of global actor 'MainActor'
87 | _ bc: JGodotBuiltinClass,
88 | _ ctors: [JGodotConstructor],
:
92 | members: [JGodotArgument]?)
93 | {
94 | let isStruct = isStructMap [typeName] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
95 |
96 | for m in ctors {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:237:24: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
235 | let ptrResult: String
236 | if has_return {
237 | let isStruct = isStructMap [godotReturnType ?? ""] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
238 | if isStruct {
239 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:261:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
259 | p ("\(typeName).\(methodToCall) (nil, \(ptrArgs), \(ptrResult)\(numberOfArgs))")
260 | } else {
261 | if isStructMap [typeName] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
262 | p ("withUnsafePointer (to: self) { ptr in ")
263 | p (" \(typeName).\(methodToCall) (UnsafeMutableRawPointer (mutating: ptr), \(ptrArgs), \(ptrResult)\(numberOfArgs))")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:338:32: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
336 | p ("\(declType) result: \(retType) = \(retType)()")
337 | }
338 | let isStruct = isStructMap [op.returnType] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
339 | if isStruct {
340 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:667:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
665 | storedMembers = bc.members
666 | } else {
667 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
668 | storedMembers = memberOffsets.compactMap({ m in
669 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:97:5: note: var declared here
95 | }
96 | }
97 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
98 | for mo in jsonApi.builtinClassMemberOffsets {
99 | if mo.buildConfiguration == buildConfiguration {
[56/138] Compiling Generator BuiltinGen.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:68:98: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
66 | // - typedarrays, the default values need to be handled one by one, or a general conversion
67 | // system needs to be implemented
68 | if !argumentType.starts(with: "Array") && !argumentType.starts(with: "bitfield::") && (!(isStructMap [argumentType] ?? false) || isPrimitiveType(name: argumentType)) && argumentType != "NodePath" && !argumentType.starts(with: "typedarray::") && !argumentType.starts (with: "Dictionary") && dv != "null" {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
69 | if argument.type == "String" {
70 | def = " = \(dv)"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:188:10: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
187 | var needAddress = "&"
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:190:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
188 | if !(isStructMap [arg.type] ?? false) { // { ) isCoreType(name: arg.type){
189 | argref = godotArgumentToSwift (arg.name)
190 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
191 | optstorage = ""
192 | } else if arg.type == "String" && mapStringToSwift {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:196:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
194 | optstorage = ".content"
195 | } else {
196 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
197 | optstorage = ".content"
198 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:89:5: note: var declared here
87 |
88 | let buildConfiguration: String = "float_64"
89 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
90 | for cs in jsonApi.builtinClassSizes {
91 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:207:9: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
182 | }
183 |
184 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
185 | var argref: String
186 | var optstorage: String
:
205 | optstorage = ""
206 | }
207 | if (isStructMap [arg.type] ?? false) {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
208 | return "\(needAddress)\(escapeSwift(argref))\(optstorage)"
209 | } else {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/Arguments.swift:221:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
212 | }
213 |
214 | func generateCopies (_ args: [JGodotArgument]) -> String {
| `- note: add '@MainActor' to make global function 'generateCopies' part of global actor 'MainActor'
215 | var body = ""
216 |
:
219 | var reference = godotArgumentToSwift (arg.name)
220 |
221 | if isStructMap [arg.type] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
222 | if arg.type == "float" {
223 | reference = "Double (\(reference))"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:94:20: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
84 | }
85 |
86 | func generateBuiltinCtors (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateBuiltinCtors(_:_:_:godotTypeName:typeName:typeEnum:members:)' part of global actor 'MainActor'
87 | _ bc: JGodotBuiltinClass,
88 | _ ctors: [JGodotConstructor],
:
92 | members: [JGodotArgument]?)
93 | {
94 | let isStruct = isStructMap [typeName] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
95 |
96 | for m in ctors {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:237:24: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
235 | let ptrResult: String
236 | if has_return {
237 | let isStruct = isStructMap [godotReturnType ?? ""] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
238 | if isStruct {
239 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:261:12: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
202 | }
203 |
204 | func generateMethodCall (_ p: Printer,
| `- note: add '@MainActor' to make global function 'generateMethodCall(_:typeName:methodToCall:godotReturnType:isStatic:isVararg:arguments:kind:)' part of global actor 'MainActor'
205 | typeName: String,
206 | methodToCall: String,
:
259 | p ("\(typeName).\(methodToCall) (nil, \(ptrArgs), \(ptrResult)\(numberOfArgs))")
260 | } else {
261 | if isStructMap [typeName] ?? false {
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
262 | p ("withUnsafePointer (to: self) { ptr in ")
263 | p (" \(typeName).\(methodToCall) (UnsafeMutableRawPointer (mutating: ptr), \(ptrArgs), \(ptrResult)\(numberOfArgs))")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:338:32: error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
336 | p ("\(declType) result: \(retType) = \(retType)()")
337 | }
338 | let isStruct = isStructMap [op.returnType] ?? false
| `- error: main actor-isolated var 'isStructMap' can not be referenced from a nonisolated context
339 | if isStruct {
340 | ptrResult = "&result"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:35:5: note: var declared here
33 | // Determines whether a built-in type is defined as a structure, this means:
34 | // that it has fields and does not have a "handle" pointer to the native object
35 | var isStructMap: [String:Bool] = [:]
| `- note: var declared here
36 |
37 | func dropMatchingPrefix (_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/BuiltinGen.swift:667:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
665 | storedMembers = bc.members
666 | } else {
667 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
668 | storedMembers = memberOffsets.compactMap({ m in
669 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftGodot/Generator/Generator/main.swift:97:5: note: var declared here
95 | }
96 | }
97 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
98 | for mo in jsonApi.builtinClassMemberOffsets {
99 | if mo.buildConfiguration == buildConfiguration {
[57/138] Compiling Generator main.swift
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/4] Write swift-version-2F0A5646E1D333AE.txt
[2/7] Emitting module ExtensionApi
[3/7] Compiling ExtensionApi ApiJsonModel+Extra.swift
[4/7] Compiling ExtensionApi ApiJsonModel.swift
[5/19] Compiling Generator DocModel.swift
[6/20] Compiling Generator Printer.swift
[7/20] Compiling Generator TypeHelpers.swift
[8/20] Compiling Generator MethodGen.swift
[9/20] Compiling Generator StringOperations.swift
[10/20] Compiling Generator UtilityGen.swift
[11/20] Compiling Generator Enums.swift
[12/20] Compiling Generator main.swift
[13/20] Compiling Generator ClassGen.swift
[14/20] Compiling Generator Data.swift
[15/20] Emitting module Generator
[16/20] Compiling Generator Arguments.swift
[17/20] Compiling Generator BuiltinGen.swift
[17/20] Write Objects.LinkFileList
[18/20] Linking Generator-tool
[19/20] Applying Generator-tool
[0/1] Planning build
[1/1] Compiling plugin CodeGeneratorPlugin
Building for debugging...
[1/23] Write sources
[3/24] Write swift-version-2F0A5646E1D333AE.txt
[5/28] Compiling SwiftSyntax509 Empty.swift
[6/28] Emitting module SwiftSyntax509
[7/28] Emitting module SwiftSyntax510
[8/28] Compiling SwiftSyntax510 Empty.swift
[8/28] Write Objects.LinkFileList
[9/90] Linking Generator-tool
[11/90] Compiling SwiftSyntax SyntaxHashable.swift
[12/90] Compiling SwiftSyntax SyntaxIdentifier.swift
[13/90] Compiling SwiftSyntax SyntaxNodeStructure.swift
[14/90] Compiling SwiftSyntax SyntaxProtocol.swift
[15/90] Compiling SwiftSyntax SyntaxText.swift
[16/90] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[17/90] Compiling SwiftSyntax TokenDiagnostic.swift
[18/96] Compiling SwiftSyntax SourceLocation.swift
[19/96] Compiling SwiftSyntax SourcePresence.swift
[20/96] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[21/96] Compiling SwiftSyntax Syntax.swift
[22/96] Compiling SwiftSyntax SyntaxArena.swift
[23/96] Compiling SwiftSyntax SyntaxChildren.swift
[24/96] Compiling SwiftSyntax SyntaxCollection.swift
Running with projectDir=$(projectDir) and output=/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources
Generator/default_value: no support for [Variant] = 0
Generator/default_value: no support for [Variant] = 0
Generator/default_value: no support for [Variant] = 0
Generator/default_value: no support for [Variant] = 0
Generator/default_value: no support for [typedarray::RDPipelineSpecializationConstant] = Array[RDPipelineSpecializationConstant]([])
Generator/default_value: no support for [typedarray::RDPipelineSpecializationConstant] = Array[RDPipelineSpecializationConstant]([])
[24/96] Generating GeneratedSources
[25/96] Write sources
[27/96] Emitting module SwiftSyntax
[28/96] Compiling SwiftSyntax MemoryLayout.swift
[29/96] Compiling SwiftSyntax MissingNodeInitializers.swift
[30/96] Compiling SwiftSyntax RawSyntax.swift
[31/96] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[32/96] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[33/96] Compiling SwiftSyntax RawSyntaxTokenView.swift
[34/96] Compiling SwiftSyntax SourceLength.swift
[35/96] Compiling SwiftSyntax TokenSequence.swift
[36/96] Compiling SwiftSyntax TokenSyntax.swift
[37/96] Compiling SwiftSyntax Trivia.swift
[38/96] Compiling SwiftSyntax Utils.swift
[39/96] Compiling SwiftSyntax ChildNameForKeyPath.swift
[40/96] Compiling SwiftSyntax Keyword.swift
[41/96] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[42/96] Compiling SwiftSyntax AbsolutePosition.swift
[43/96] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[44/96] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[45/96] Compiling SwiftSyntax Assert.swift
[46/96] Compiling SwiftSyntax BumpPtrAllocator.swift
[47/96] Compiling SwiftSyntax CommonAncestor.swift
[48/96] Compiling SwiftSyntax Convenience.swift
[49/96] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[50/96] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[51/96] Compiling SwiftSyntax SyntaxBaseNodes.swift
[52/96] Compiling SwiftSyntax SyntaxCollections.swift
[53/96] Compiling SwiftSyntax SyntaxEnum.swift
[54/96] Compiling SwiftSyntax SyntaxKind.swift
[55/96] Compiling SwiftSyntax SyntaxRewriter.swift
[56/96] Compiling SwiftSyntax RawSyntaxNodesC.swift
[57/96] Compiling SwiftSyntax RawSyntaxNodesD.swift
[58/96] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[59/96] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[60/96] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[61/96] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[62/96] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[63/96] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[64/96] Compiling SwiftSyntax RawSyntaxValidation.swift
[65/96] Compiling SwiftSyntax SyntaxNodesAB.swift
[66/96] Compiling SwiftSyntax SyntaxNodesC.swift
[67/96] Compiling SwiftSyntax SyntaxNodesD.swift
[68/96] Compiling SwiftSyntax SyntaxTraits.swift
[69/96] Compiling SwiftSyntax SyntaxTransform.swift
[70/96] Compiling SwiftSyntax SyntaxVisitor.swift
[71/96] Compiling SwiftSyntax TokenKind.swift
[72/96] Compiling SwiftSyntax Tokens.swift
[73/96] Compiling SwiftSyntax TriviaPieces.swift
[74/96] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[75/96] Compiling SwiftSyntax SyntaxNodesEF.swift
[76/96] Compiling SwiftSyntax SyntaxNodesGHI.swift
[77/96] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[78/96] Compiling SwiftSyntax SyntaxNodesOP.swift
[79/96] Compiling SwiftSyntax SyntaxNodesQRS.swift
[80/96] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[81/148] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[82/148] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[83/148] Compiling SwiftDiagnostics Note.swift
[84/148] Compiling SwiftDiagnostics Message.swift
[85/148] Compiling SwiftBasicFormat Syntax+Extensions.swift
[86/148] Compiling SwiftDiagnostics FixIt.swift
[87/148] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[88/148] Compiling SwiftDiagnostics Diagnostic.swift
[89/148] Compiling SwiftDiagnostics Convenience.swift
[90/148] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[91/148] Emitting module SwiftDiagnostics
[92/148] Emitting module SwiftBasicFormat
[93/148] Compiling SwiftBasicFormat BasicFormat.swift
[94/148] Compiling SwiftParser Lexeme.swift
[95/148] Compiling SwiftParser LexemeSequence.swift
[96/148] Compiling SwiftParser Lexer.swift
[97/148] Compiling SwiftParser RegexLiteralLexer.swift
[98/152] Compiling SwiftParser UnicodeScalarExtensions.swift
[99/152] Compiling SwiftParser Lookahead.swift
[100/152] Compiling SwiftParser LoopProgressCondition.swift
[101/152] Compiling SwiftParser Modifiers.swift
[102/152] Compiling SwiftParser Names.swift
[103/152] Compiling SwiftParser Nominals.swift
[104/152] Compiling SwiftParser Parameters.swift
[105/152] Compiling SwiftParser ParseSourceFile.swift
[106/152] Compiling SwiftParser Parser.swift
[107/152] Compiling SwiftParser Patterns.swift
[108/152] Compiling SwiftParser Recovery.swift
[109/152] Compiling SwiftParser Specifiers.swift
[110/152] Compiling SwiftParser Statements.swift
[111/152] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[112/152] Compiling SwiftParser StringLiterals.swift
[113/152] Compiling SwiftParser SwiftParserCompatibility.swift
[114/152] Compiling SwiftParser SyntaxUtils.swift
[115/152] Compiling SwiftParser TokenConsumer.swift
[116/152] Compiling SwiftParser TokenPrecedence.swift
[117/152] Compiling SwiftParser TokenSpec.swift
[118/152] Compiling SwiftParser TokenSpecSet.swift
[119/152] Compiling SwiftParser TopLevel.swift
[120/152] Compiling SwiftParser TriviaParser.swift
[121/152] Compiling SwiftParser Types.swift
[122/152] Emitting module SwiftParser
[123/152] Compiling SwiftParser Attributes.swift
[124/152] Compiling SwiftParser Availability.swift
[125/152] Compiling SwiftParser CharacterInfo.swift
[126/152] Compiling SwiftParser CollectionNodes+Parsable.swift
[127/152] Compiling SwiftParser Declarations.swift
[128/152] Compiling SwiftParser IsLexerClassified.swift
[129/152] Compiling SwiftParser LayoutNodes+Parsable.swift
[130/152] Compiling SwiftParser Parser+TokenSpecSet.swift
[131/152] Compiling SwiftParser TokenSpecStaticMembers.swift
[132/152] Compiling SwiftParser Directives.swift
[133/152] Compiling SwiftParser ExperimentalFeatures.swift
[134/152] Compiling SwiftParser Expressions.swift
[135/152] Compiling SwiftParser IncrementalParseTransition.swift
[136/152] Compiling SwiftParser Cursor.swift
[137/175] Compiling SwiftOperators PrecedenceGroup.swift
[138/176] Compiling SwiftOperators PrecedenceGraph.swift
[139/176] Compiling SwiftOperators OperatorTable.swift
[140/176] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[141/176] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[142/177] Compiling SwiftOperators OperatorError.swift
[143/177] Compiling SwiftOperators OperatorTable+Semantics.swift
[144/177] Emitting module SwiftOperators
[145/177] Compiling SwiftOperators OperatorError+Diagnostics.swift
[146/177] Compiling SwiftOperators OperatorTable+Defaults.swift
[147/177] Compiling SwiftOperators Operator.swift
[148/177] Compiling SwiftOperators OperatorTable+Folding.swift
[149/177] Compiling SwiftOperators SyntaxSynthesis.swift
[150/177] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[151/177] Compiling SwiftParserDiagnostics Utils.swift
[152/177] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[153/177] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[154/177] Compiling SwiftParserDiagnostics PresenceUtils.swift
[155/177] Compiling SwiftParserDiagnostics MissingNodesError.swift
[156/177] Compiling SwiftParserDiagnostics MissingTokenError.swift
[157/177] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[158/177] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[159/177] Emitting module SwiftParserDiagnostics
[160/177] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[161/177] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[162/191] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[163/192] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[164/192] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[165/192] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[166/192] Compiling SwiftSyntaxBuilder Indenter.swift
[167/192] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[168/192] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[169/192] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[170/192] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[171/192] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[172/192] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[173/192] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[174/192] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[175/192] Emitting module SwiftSyntaxBuilder
[176/192] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[177/206] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[178/207] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[179/207] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[180/207] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[181/207] Compiling SwiftSyntaxMacros MemberMacro.swift
[182/207] Compiling SwiftSyntaxMacros Macro+Format.swift
[183/207] Compiling SwiftSyntaxMacros Macro.swift
[184/207] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[185/207] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[186/207] Compiling SwiftSyntaxMacros AccessorMacro.swift
[187/207] Compiling SwiftSyntaxMacros AttachedMacro.swift
[188/207] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[189/207] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[190/207] Emitting module SwiftSyntaxMacros
[191/207] Compiling SwiftSyntaxMacros PeerMacro.swift
[192/215] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[193/215] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[194/215] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[195/215] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[196/215] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[197/215] Emitting module SwiftSyntaxMacroExpansion
[198/215] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[199/215] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[200/222] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[201/222] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[202/222] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[203/222] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[204/222] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[205/222] Emitting module SwiftCompilerPluginMessageHandling
[206/222] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[207/224] Emitting module SwiftCompilerPlugin
[208/224] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[209/237] Compiling SwiftGodotMacroLibrary SceneTreeMacro.swift
[210/238] Compiling SwiftGodotMacroLibrary PickerNameProviderMacro.swift
[211/238] Compiling SwiftGodotMacroLibrary MacroSharedApi.swift
[212/238] Compiling SwiftGodotMacroLibrary SignalMacro.swift
[213/238] Compiling SwiftGodotMacroLibrary TextureLiteralMacro.swift
[214/238] Compiling SwiftGodotMacroLibrary NativeHandleDiscardingMacro.swift
[215/238] Compiling SwiftGodotMacroLibrary MacroCallable.swift
[216/238] Compiling SwiftGodotMacroLibrary MacroExport.swift
[217/238] Emitting module SwiftGodotMacroLibrary
[218/238] Compiling SwiftGodotMacroLibrary SwiftSyntax+MacroExport.swift
[219/238] Compiling SwiftGodotMacroLibrary InitSwiftExtensionMacro.swift
[220/238] Compiling SwiftGodotMacroLibrary MacroExportGroup.swift
[221/238] Compiling SwiftGodotMacroLibrary MacroExportSubgroup.swift
[222/238] Compiling SwiftGodotMacroLibrary MacroGodot.swift
[222/238] Write Objects.LinkFileList
[223/238] Linking SwiftGodotMacroLibrary-tool
[225/464] Compiling SwiftGodot ClassServices.swift
[226/464] Compiling SwiftGodot GArray.swift
[227/464] Compiling SwiftGodot GArrayCollection.swift
[228/464] Compiling SwiftGodot InspectableProperty.swift
[229/464] Compiling SwiftGodot NIOLock.swift
[230/464] Compiling SwiftGodot ObjectCollection.swift
[231/464] Compiling SwiftGodot Packed.swift
[232/464] Compiling SwiftGodot SignalRegistration.swift
[233/464] Compiling SwiftGodot SignalSupport.swift
[234/464] Compiling SwiftGodot StringExtensions.swift
[235/464] Compiling SwiftGodot VariantCollection.swift
[236/464] Compiling SwiftGodot VariantRepresentable.swift
[237/464] Compiling SwiftGodot VariantStorable.swift
[238/464] Compiling SwiftGodot Various.swift
[239/464] Compiling SwiftGodot Wrapped.swift
[240/464] Compiling SwiftGodot EntryPoint.swift
[241/464] Compiling SwiftGodot Export.swift
[242/464] Compiling SwiftGodot Arithmetic.swift
[243/464] Compiling SwiftGodot ClassInfo+ConvenienceProperties.swift
[244/464] Compiling SwiftGodot ColorExtensions.swift
[245/464] Compiling SwiftGodot GD+Utils.swift
[246/464] Compiling SwiftGodot GDictionary.swift
[247/464] Compiling SwiftGodot NodeExtensions.swift
[248/464] Compiling SwiftGodot PhysicsDirectSpaceState3D+IntersectRayResult.swift
[249/464] Compiling SwiftGodot RefCountedExtensions.swift
[250/489] Compiling SwiftGodot AnimationPlayer.swift
[251/489] Compiling SwiftGodot AnimationRootNode.swift
[252/489] Compiling SwiftGodot AnimationTree.swift
[253/489] Compiling SwiftGodot Area2D.swift
[254/489] Compiling SwiftGodot Area3D.swift
[255/489] Compiling SwiftGodot ArrayMesh.swift
[256/489] Compiling SwiftGodot ArrayOccluder3D.swift
[257/489] Compiling SwiftGodot AspectRatioContainer.swift
[258/489] Compiling SwiftGodot AtlasTexture.swift
[259/489] Compiling SwiftGodot AudioBusLayout.swift
[260/489] Compiling SwiftGodot AudioEffect.swift
[261/489] Compiling SwiftGodot AudioEffectAmplify.swift
[262/489] Compiling SwiftGodot AudioEffectBandLimitFilter.swift
[263/489] Compiling SwiftGodot AudioEffectBandPassFilter.swift
[264/489] Compiling SwiftGodot AudioEffectCapture.swift
[265/489] Compiling SwiftGodot AudioEffectChorus.swift
[266/489] Compiling SwiftGodot AudioEffectCompressor.swift
[267/489] Compiling SwiftGodot AudioEffectDelay.swift
[268/489] Compiling SwiftGodot AudioEffectDistortion.swift
[269/489] Compiling SwiftGodot AudioEffectEQ.swift
[270/489] Compiling SwiftGodot AudioEffectEQ10.swift
[271/489] Compiling SwiftGodot AudioEffectEQ21.swift
[272/489] Compiling SwiftGodot AudioEffectEQ6.swift
[273/489] Compiling SwiftGodot AudioEffectFilter.swift
[274/489] Compiling SwiftGodot AudioEffectHighPassFilter.swift
[275/514] Compiling SwiftGodot ConcavePolygonShape2D.swift
[276/514] Compiling SwiftGodot ConcavePolygonShape3D.swift
[277/514] Compiling SwiftGodot ConeTwistJoint3D.swift
[278/514] Compiling SwiftGodot ConfigFile.swift
[279/514] Compiling SwiftGodot ConfirmationDialog.swift
[280/514] Compiling SwiftGodot Container.swift
[281/514] Compiling SwiftGodot Control.swift
[282/514] Compiling SwiftGodot ConvexPolygonShape2D.swift
[283/514] Compiling SwiftGodot ConvexPolygonShape3D.swift
[284/514] Compiling SwiftGodot Crypto.swift
[285/514] Compiling SwiftGodot CryptoKey.swift
[286/514] Compiling SwiftGodot Cubemap.swift
[287/514] Compiling SwiftGodot CubemapArray.swift
[288/514] Compiling SwiftGodot Curve.swift
[289/514] Compiling SwiftGodot Curve2D.swift
[290/514] Compiling SwiftGodot Curve3D.swift
[291/514] Compiling SwiftGodot CurveTexture.swift
[292/514] Compiling SwiftGodot CurveXYZTexture.swift
[293/514] Compiling SwiftGodot CylinderMesh.swift
[294/514] Compiling SwiftGodot CylinderShape3D.swift
[295/514] Compiling SwiftGodot DTLSServer.swift
[296/514] Compiling SwiftGodot DampedSpringJoint2D.swift
[297/514] Compiling SwiftGodot Decal.swift
[298/514] Compiling SwiftGodot DirAccess.swift
[299/514] Compiling SwiftGodot DirectionalLight2D.swift
[300/539] Compiling SwiftGodot DirectionalLight3D.swift
[301/539] Compiling SwiftGodot DisplayServer.swift
[302/539] Compiling SwiftGodot ENetConnection.swift
[303/539] Compiling SwiftGodot ENetMultiplayerPeer.swift
[304/539] Compiling SwiftGodot ENetPacketPeer.swift
[305/539] Compiling SwiftGodot EditorCommandPalette.swift
[306/539] Compiling SwiftGodot EditorDebuggerPlugin.swift
[307/539] Compiling SwiftGodot EditorDebuggerSession.swift
[308/539] Compiling SwiftGodot EditorExportPlatform.swift
[309/539] Compiling SwiftGodot EditorExportPlatformAndroid.swift
[310/539] Compiling SwiftGodot EditorExportPlatformIOS.swift
[311/539] Compiling SwiftGodot EditorExportPlatformLinuxBSD.swift
[312/539] Compiling SwiftGodot EditorExportPlatformMacOS.swift
[313/539] Compiling SwiftGodot EditorExportPlatformPC.swift
[314/539] Compiling SwiftGodot EditorExportPlatformWeb.swift
[315/539] Compiling SwiftGodot EditorExportPlatformWindows.swift
[316/539] Compiling SwiftGodot EditorExportPlugin.swift
[317/539] Compiling SwiftGodot EditorFeatureProfile.swift
[318/539] Compiling SwiftGodot EditorFileDialog.swift
[319/539] Compiling SwiftGodot EditorFileSystem.swift
[320/539] Compiling SwiftGodot EditorFileSystemDirectory.swift
[321/539] Compiling SwiftGodot EditorFileSystemImportFormatSupportQuery.swift
[322/539] Compiling SwiftGodot EditorImportPlugin.swift
[323/539] Compiling SwiftGodot EditorInspector.swift
[324/539] Compiling SwiftGodot EditorInspectorPlugin.swift
[325/564] Compiling SwiftGodot GodotInterface.swift
[326/564] Compiling SwiftGodot MacroDefs.swift
[327/564] Compiling SwiftGodot LinearInterpolation.swift
[328/564] Compiling SwiftGodot RotationConversion.swift
[329/564] Compiling SwiftGodot Snapped.swift
[330/564] Compiling SwiftGodot SwiftGodot.swift
[331/564] Compiling SwiftGodot Variant.swift
[332/564] Compiling SwiftGodot AABB.swift
[333/564] Compiling SwiftGodot Array.swift
[334/564] Compiling SwiftGodot Basis.swift
[335/564] Compiling SwiftGodot Callable.swift
[336/564] Compiling SwiftGodot Color.swift
[337/564] Compiling SwiftGodot Dictionary.swift
[338/564] Compiling SwiftGodot Nil.swift
[339/564] Compiling SwiftGodot NodePath.swift
[340/564] Compiling SwiftGodot PackedByteArray.swift
[341/564] Compiling SwiftGodot PackedColorArray.swift
[342/564] Compiling SwiftGodot PackedFloat32Array.swift
[343/564] Compiling SwiftGodot PackedFloat64Array.swift
[344/564] Compiling SwiftGodot PackedInt32Array.swift
[345/564] Compiling SwiftGodot PackedInt64Array.swift
[346/564] Compiling SwiftGodot PackedStringArray.swift
[347/564] Compiling SwiftGodot PackedVector2Array.swift
[348/564] Compiling SwiftGodot PackedVector3Array.swift
[349/564] Compiling SwiftGodot Plane.swift
[350/564] Compiling SwiftGodot AudioEffectHighShelfFilter.swift
[351/564] Compiling SwiftGodot AudioEffectInstance.swift
[352/564] Compiling SwiftGodot AudioEffectLimiter.swift
[353/564] Compiling SwiftGodot AudioEffectLowPassFilter.swift
[354/564] Compiling SwiftGodot AudioEffectLowShelfFilter.swift
[355/564] Compiling SwiftGodot AudioEffectNotchFilter.swift
[356/564] Compiling SwiftGodot AudioEffectPanner.swift
[357/564] Compiling SwiftGodot AudioEffectPhaser.swift
[358/564] Compiling SwiftGodot AudioEffectPitchShift.swift
[359/564] Compiling SwiftGodot AudioEffectRecord.swift
[360/564] Compiling SwiftGodot AudioEffectReverb.swift
[361/564] Compiling SwiftGodot AudioEffectSpectrumAnalyzer.swift
[362/564] Compiling SwiftGodot AudioEffectSpectrumAnalyzerInstance.swift
[363/564] Compiling SwiftGodot AudioEffectStereoEnhance.swift
[364/564] Compiling SwiftGodot AudioListener2D.swift
[365/564] Compiling SwiftGodot AudioListener3D.swift
[366/564] Compiling SwiftGodot AudioServer.swift
[367/564] Compiling SwiftGodot AudioStream.swift
[368/564] Compiling SwiftGodot AudioStreamGenerator.swift
[369/564] Compiling SwiftGodot AudioStreamGeneratorPlayback.swift
[370/564] Compiling SwiftGodot AudioStreamMP3.swift
[371/564] Compiling SwiftGodot AudioStreamMicrophone.swift
[372/564] Compiling SwiftGodot AudioStreamOggVorbis.swift
[373/564] Compiling SwiftGodot AudioStreamPlayback.swift
[374/564] Compiling SwiftGodot AudioStreamPlaybackOggVorbis.swift
[375/564] Compiling SwiftGodot CSGCylinder3D.swift
[376/564] Compiling SwiftGodot CSGMesh3D.swift
[377/564] Compiling SwiftGodot CSGPolygon3D.swift
[378/564] Compiling SwiftGodot CSGPrimitive3D.swift
[379/564] Compiling SwiftGodot CSGShape3D.swift
[380/564] Compiling SwiftGodot CSGSphere3D.swift
[381/564] Compiling SwiftGodot CSGTorus3D.swift
[382/564] Compiling SwiftGodot CallbackTweener.swift
[383/564] Compiling SwiftGodot Camera2D.swift
[384/564] Compiling SwiftGodot Camera3D.swift
[385/564] Compiling SwiftGodot CameraAttributes.swift
[386/564] Compiling SwiftGodot CameraAttributesPhysical.swift
[387/564] Compiling SwiftGodot CameraAttributesPractical.swift
[388/564] Compiling SwiftGodot CameraFeed.swift
[389/564] Compiling SwiftGodot CameraServer.swift
[390/564] Compiling SwiftGodot CameraTexture.swift
[391/564] Compiling SwiftGodot CanvasGroup.swift
[392/564] Compiling SwiftGodot CanvasItem.swift
[393/564] Compiling SwiftGodot CanvasItemMaterial.swift
[394/564] Compiling SwiftGodot CanvasLayer.swift
[395/564] Compiling SwiftGodot CanvasModulate.swift
[396/564] Compiling SwiftGodot CanvasTexture.swift
[397/564] Compiling SwiftGodot CapsuleMesh.swift
[398/564] Compiling SwiftGodot CapsuleShape2D.swift
[399/564] Compiling SwiftGodot CapsuleShape3D.swift
[400/564] Compiling SwiftGodot AnimatedSprite2D.swift
[401/564] Compiling SwiftGodot AnimatedSprite3D.swift
[402/564] Compiling SwiftGodot AnimatedTexture.swift
[403/564] Compiling SwiftGodot Animation.swift
[404/564] Compiling SwiftGodot AnimationLibrary.swift
[405/564] Compiling SwiftGodot AnimationMixer.swift
[406/564] Compiling SwiftGodot AnimationNode.swift
[407/564] Compiling SwiftGodot AnimationNodeAdd2.swift
[408/564] Compiling SwiftGodot AnimationNodeAdd3.swift
[409/564] Compiling SwiftGodot AnimationNodeAnimation.swift
[410/564] Compiling SwiftGodot AnimationNodeBlend2.swift
[411/564] Compiling SwiftGodot AnimationNodeBlend3.swift
[412/564] Compiling SwiftGodot AnimationNodeBlendSpace1D.swift
[413/564] Compiling SwiftGodot AnimationNodeBlendSpace2D.swift
[414/564] Compiling SwiftGodot AnimationNodeBlendTree.swift
[415/564] Compiling SwiftGodot AnimationNodeOneShot.swift
[416/564] Compiling SwiftGodot AnimationNodeOutput.swift
[417/564] Compiling SwiftGodot AnimationNodeStateMachine.swift
[418/564] Compiling SwiftGodot AnimationNodeStateMachinePlayback.swift
[419/564] Compiling SwiftGodot AnimationNodeStateMachineTransition.swift
[420/564] Compiling SwiftGodot AnimationNodeSub2.swift
[421/564] Compiling SwiftGodot AnimationNodeSync.swift
[422/564] Compiling SwiftGodot AnimationNodeTimeScale.swift
[423/564] Compiling SwiftGodot AnimationNodeTimeSeek.swift
[424/564] Compiling SwiftGodot AnimationNodeTransition.swift
[425/564] Compiling SwiftGodot CenterContainer.swift
[426/564] Compiling SwiftGodot CharFXTransform.swift
[427/564] Compiling SwiftGodot CharacterBody2D.swift
[428/564] Compiling SwiftGodot CharacterBody3D.swift
[429/564] Compiling SwiftGodot CheckBox.swift
[430/564] Compiling SwiftGodot CheckButton.swift
[431/564] Compiling SwiftGodot CircleShape2D.swift
[432/564] Compiling SwiftGodot ClassDB.swift
[433/564] Compiling SwiftGodot CodeEdit.swift
[434/564] Compiling SwiftGodot CodeHighlighter.swift
[435/564] Compiling SwiftGodot CollisionObject2D.swift
[436/564] Compiling SwiftGodot CollisionObject3D.swift
[437/564] Compiling SwiftGodot CollisionPolygon2D.swift
[438/564] Compiling SwiftGodot CollisionPolygon3D.swift
[439/564] Compiling SwiftGodot CollisionShape2D.swift
[440/564] Compiling SwiftGodot CollisionShape3D.swift
[441/564] Compiling SwiftGodot ColorPicker.swift
[442/564] Compiling SwiftGodot ColorPickerButton.swift
[443/564] Compiling SwiftGodot ColorRect.swift
[444/564] Compiling SwiftGodot CompressedCubemap.swift
[445/564] Compiling SwiftGodot CompressedCubemapArray.swift
[446/564] Compiling SwiftGodot CompressedTexture2D.swift
[447/564] Compiling SwiftGodot CompressedTexture2DArray.swift
[448/564] Compiling SwiftGodot CompressedTexture3D.swift
[449/564] Compiling SwiftGodot CompressedTextureLayered.swift
[450/564] Compiling SwiftGodot Projection.swift
[451/564] Compiling SwiftGodot Quaternion.swift
[452/564] Compiling SwiftGodot RID.swift
[453/564] Compiling SwiftGodot Rect2.swift
[454/564] Compiling SwiftGodot Rect2i.swift
[455/564] Compiling SwiftGodot Signal.swift
[456/564] Compiling SwiftGodot String.swift
[457/564] Compiling SwiftGodot StringName.swift
[458/564] Compiling SwiftGodot Transform2D.swift
[459/564] Compiling SwiftGodot Transform3D.swift
[460/564] Compiling SwiftGodot Vector2.swift
[461/564] Compiling SwiftGodot Vector2i.swift
[462/564] Compiling SwiftGodot Vector3.swift
[463/564] Compiling SwiftGodot Vector3i.swift
[464/564] Compiling SwiftGodot Vector4.swift
[465/564] Compiling SwiftGodot Vector4i.swift
[466/564] Compiling SwiftGodot core-defs.swift
[467/564] Compiling SwiftGodot utility.swift
[468/564] Compiling SwiftGodot AESContext.swift
[469/564] Compiling SwiftGodot AStar2D.swift
[470/564] Compiling SwiftGodot AStar3D.swift
[471/564] Compiling SwiftGodot AStarGrid2D.swift
[472/564] Compiling SwiftGodot AcceptDialog.swift
[473/564] Compiling SwiftGodot AnimatableBody2D.swift
[474/564] Compiling SwiftGodot AnimatableBody3D.swift
[475/564] Compiling SwiftGodot AudioStreamPlaybackPolyphonic.swift
[476/564] Compiling SwiftGodot AudioStreamPlaybackResampled.swift
[477/564] Compiling SwiftGodot AudioStreamPlayer.swift
[478/564] Compiling SwiftGodot AudioStreamPlayer2D.swift
[479/564] Compiling SwiftGodot AudioStreamPlayer3D.swift
[480/564] Compiling SwiftGodot AudioStreamPolyphonic.swift
[481/564] Compiling SwiftGodot AudioStreamRandomizer.swift
[482/564] Compiling SwiftGodot AudioStreamWAV.swift
[483/564] Compiling SwiftGodot BackBufferCopy.swift
[484/564] Compiling SwiftGodot BaseButton.swift
[485/564] Compiling SwiftGodot BaseMaterial3D.swift
[486/564] Compiling SwiftGodot BitMap.swift
[487/564] Compiling SwiftGodot Bone2D.swift
[488/564] Compiling SwiftGodot BoneAttachment3D.swift
[489/564] Compiling SwiftGodot BoneMap.swift
[490/564] Compiling SwiftGodot BoxContainer.swift
[491/564] Compiling SwiftGodot BoxMesh.swift
[492/564] Compiling SwiftGodot BoxOccluder3D.swift
[493/564] Compiling SwiftGodot BoxShape3D.swift
[494/564] Compiling SwiftGodot Button.swift
[495/564] Compiling SwiftGodot ButtonGroup.swift
[496/564] Compiling SwiftGodot CPUParticles2D.swift
[497/564] Compiling SwiftGodot CPUParticles3D.swift
[498/564] Compiling SwiftGodot CSGBox3D.swift
[499/564] Compiling SwiftGodot CSGCombiner3D.swift
[500/739] Compiling SwiftGodot EditorInterface.swift
[501/739] Compiling SwiftGodot EditorNode3DGizmo.swift
[502/739] Compiling SwiftGodot EditorNode3DGizmoPlugin.swift
[503/739] Compiling SwiftGodot EditorPaths.swift
[504/739] Compiling SwiftGodot EditorPlugin.swift
[505/739] Compiling SwiftGodot EditorProperty.swift
[506/739] Compiling SwiftGodot EditorResourceConversionPlugin.swift
[507/739] Compiling SwiftGodot EditorResourcePicker.swift
[508/739] Compiling SwiftGodot EditorResourcePreview.swift
[509/739] Compiling SwiftGodot EditorResourcePreviewGenerator.swift
[510/739] Compiling SwiftGodot EditorResourceTooltipPlugin.swift
[511/739] Compiling SwiftGodot EditorSceneFormatImporter.swift
[512/739] Compiling SwiftGodot EditorSceneFormatImporterBlend.swift
[513/739] Compiling SwiftGodot EditorSceneFormatImporterFBX.swift
[514/739] Compiling SwiftGodot EditorSceneFormatImporterGLTF.swift
[515/739] Compiling SwiftGodot EditorScenePostImport.swift
[516/739] Compiling SwiftGodot EditorScenePostImportPlugin.swift
[517/739] Compiling SwiftGodot EditorScript.swift
[518/739] Compiling SwiftGodot EditorScriptPicker.swift
[519/739] Compiling SwiftGodot EditorSelection.swift
[520/739] Compiling SwiftGodot EditorSettings.swift
[521/739] Compiling SwiftGodot EditorSpinSlider.swift
[522/739] Compiling SwiftGodot EditorSyntaxHighlighter.swift
[523/739] Compiling SwiftGodot EditorTranslationParserPlugin.swift
[524/739] Compiling SwiftGodot EditorUndoRedoManager.swift
[525/764] Compiling SwiftGodot Image.swift
[526/764] Compiling SwiftGodot ImageFormatLoader.swift
[527/764] Compiling SwiftGodot ImageFormatLoaderExtension.swift
[528/764] Compiling SwiftGodot ImageTexture.swift
[529/764] Compiling SwiftGodot ImageTexture3D.swift
[530/764] Compiling SwiftGodot ImageTextureLayered.swift
[531/764] Compiling SwiftGodot ImmediateMesh.swift
[532/764] Compiling SwiftGodot ImporterMesh.swift
[533/764] Compiling SwiftGodot ImporterMeshInstance3D.swift
[534/764] Compiling SwiftGodot Input.swift
[535/764] Compiling SwiftGodot InputEvent.swift
[536/764] Compiling SwiftGodot InputEventAction.swift
[537/764] Compiling SwiftGodot InputEventFromWindow.swift
[538/764] Compiling SwiftGodot InputEventGesture.swift
[539/764] Compiling SwiftGodot InputEventJoypadButton.swift
[540/764] Compiling SwiftGodot InputEventJoypadMotion.swift
[541/764] Compiling SwiftGodot InputEventKey.swift
[542/764] Compiling SwiftGodot InputEventMIDI.swift
[543/764] Compiling SwiftGodot InputEventMagnifyGesture.swift
[544/764] Compiling SwiftGodot InputEventMouse.swift
[545/764] Compiling SwiftGodot InputEventMouseButton.swift
[546/764] Compiling SwiftGodot InputEventMouseMotion.swift
[547/764] Compiling SwiftGodot InputEventPanGesture.swift
[548/764] Compiling SwiftGodot InputEventScreenDrag.swift
[549/764] Compiling SwiftGodot InputEventScreenTouch.swift
[550/789] Compiling SwiftGodot LightmapProbe.swift
[551/789] Compiling SwiftGodot Lightmapper.swift
[552/789] Compiling SwiftGodot LightmapperRD.swift
[553/789] Compiling SwiftGodot Line2D.swift
[554/789] Compiling SwiftGodot LineEdit.swift
[555/789] Compiling SwiftGodot LinkButton.swift
[556/789] Compiling SwiftGodot MainLoop.swift
[557/789] Compiling SwiftGodot MarginContainer.swift
[558/789] Compiling SwiftGodot Marker2D.swift
[559/789] Compiling SwiftGodot Marker3D.swift
[560/789] Compiling SwiftGodot Marshalls.swift
[561/789] Compiling SwiftGodot Material.swift
[562/789] Compiling SwiftGodot MenuBar.swift
[563/789] Compiling SwiftGodot MenuButton.swift
[564/789] Compiling SwiftGodot Mesh.swift
[565/789] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[566/789] Compiling SwiftGodot MeshDataTool.swift
[567/789] Compiling SwiftGodot MeshInstance2D.swift
[568/789] Compiling SwiftGodot MeshInstance3D.swift
[569/789] Compiling SwiftGodot MeshLibrary.swift
[570/789] Compiling SwiftGodot MeshTexture.swift
[571/789] Compiling SwiftGodot MethodTweener.swift
[572/789] Compiling SwiftGodot MissingNode.swift
[573/789] Compiling SwiftGodot MissingResource.swift
[574/789] Compiling SwiftGodot MobileVRInterface.swift
[575/814] Compiling SwiftGodot GLTFDocumentExtension.swift
[576/814] Compiling SwiftGodot GLTFDocumentExtensionConvertImporterMesh.swift
[577/814] Compiling SwiftGodot GLTFLight.swift
[578/814] Compiling SwiftGodot GLTFMesh.swift
[579/814] Compiling SwiftGodot GLTFNode.swift
[580/814] Compiling SwiftGodot GLTFPhysicsBody.swift
[581/814] Compiling SwiftGodot GLTFPhysicsShape.swift
[582/814] Compiling SwiftGodot GLTFSkeleton.swift
[583/814] Compiling SwiftGodot GLTFSkin.swift
[584/814] Compiling SwiftGodot GLTFSpecGloss.swift
[585/814] Compiling SwiftGodot GLTFState.swift
[586/814] Compiling SwiftGodot GLTFTexture.swift
[587/814] Compiling SwiftGodot GLTFTextureSampler.swift
[588/814] Compiling SwiftGodot GPUParticles2D.swift
[589/814] Compiling SwiftGodot GPUParticles3D.swift
[590/814] Compiling SwiftGodot GPUParticlesAttractor3D.swift
[591/814] Compiling SwiftGodot GPUParticlesAttractorBox3D.swift
[592/814] Compiling SwiftGodot GPUParticlesAttractorSphere3D.swift
[593/814] Compiling SwiftGodot GPUParticlesAttractorVectorField3D.swift
[594/814] Compiling SwiftGodot GPUParticlesCollision3D.swift
[595/814] Compiling SwiftGodot GPUParticlesCollisionBox3D.swift
[596/814] Compiling SwiftGodot GPUParticlesCollisionHeightField3D.swift
[597/814] Compiling SwiftGodot GPUParticlesCollisionSDF3D.swift
[598/814] Compiling SwiftGodot GPUParticlesCollisionSphere3D.swift
[599/814] Compiling SwiftGodot Generic6DOFJoint3D.swift
[600/839] Compiling SwiftGodot Geometry2D.swift
[601/839] Compiling SwiftGodot Geometry3D.swift
[602/839] Compiling SwiftGodot GeometryInstance3D.swift
[603/839] Compiling SwiftGodot Gradient.swift
[604/839] Compiling SwiftGodot GradientTexture1D.swift
[605/839] Compiling SwiftGodot GradientTexture2D.swift
[606/839] Compiling SwiftGodot GraphEdit.swift
[607/839] Compiling SwiftGodot GraphElement.swift
[608/839] Compiling SwiftGodot GraphNode.swift
[609/839] Compiling SwiftGodot GridContainer.swift
[610/839] Compiling SwiftGodot GridMap.swift
[611/839] Compiling SwiftGodot GrooveJoint2D.swift
[612/839] Compiling SwiftGodot HBoxContainer.swift
[613/839] Compiling SwiftGodot HFlowContainer.swift
[614/839] Compiling SwiftGodot HMACContext.swift
[615/839] Compiling SwiftGodot HScrollBar.swift
[616/839] Compiling SwiftGodot HSeparator.swift
[617/839] Compiling SwiftGodot HSlider.swift
[618/839] Compiling SwiftGodot HSplitContainer.swift
[619/839] Compiling SwiftGodot HTTPClient.swift
[620/839] Compiling SwiftGodot HTTPRequest.swift
[621/839] Compiling SwiftGodot HashingContext.swift
[622/839] Compiling SwiftGodot HeightMapShape3D.swift
[623/839] Compiling SwiftGodot HingeJoint3D.swift
[624/839] Compiling SwiftGodot IP.swift
[625/864] Compiling SwiftGodot InputEventShortcut.swift
[626/864] Compiling SwiftGodot InputEventWithModifiers.swift
[627/864] Compiling SwiftGodot InputMap.swift
[628/864] Compiling SwiftGodot InstancePlaceholder.swift
[629/864] Compiling SwiftGodot IntervalTweener.swift
[630/864] Compiling SwiftGodot ItemList.swift
[631/864] Compiling SwiftGodot JNISingleton.swift
[632/864] Compiling SwiftGodot JSON.swift
[633/864] Compiling SwiftGodot JSONRPC.swift
[634/864] Compiling SwiftGodot JavaClass.swift
[635/864] Compiling SwiftGodot JavaClassWrapper.swift
[636/864] Compiling SwiftGodot JavaScriptBridge.swift
[637/864] Compiling SwiftGodot JavaScriptObject.swift
[638/864] Compiling SwiftGodot Joint2D.swift
[639/864] Compiling SwiftGodot Joint3D.swift
[640/864] Compiling SwiftGodot KinematicCollision2D.swift
[641/864] Compiling SwiftGodot KinematicCollision3D.swift
[642/864] Compiling SwiftGodot Label.swift
[643/864] Compiling SwiftGodot Label3D.swift
[644/864] Compiling SwiftGodot LabelSettings.swift
[645/864] Compiling SwiftGodot Light2D.swift
[646/864] Compiling SwiftGodot Light3D.swift
[647/864] Compiling SwiftGodot LightOccluder2D.swift
[648/864] Compiling SwiftGodot LightmapGI.swift
[649/864] Compiling SwiftGodot LightmapGIData.swift
[650/889] Compiling SwiftGodot MovieWriter.swift
[651/889] Compiling SwiftGodot MultiMesh.swift
[652/889] Compiling SwiftGodot MultiMeshInstance2D.swift
[653/889] Compiling SwiftGodot MultiMeshInstance3D.swift
[654/889] Compiling SwiftGodot MultiplayerAPI.swift
[655/889] Compiling SwiftGodot MultiplayerAPIExtension.swift
[656/889] Compiling SwiftGodot MultiplayerPeer.swift
[657/889] Compiling SwiftGodot MultiplayerPeerExtension.swift
[658/889] Compiling SwiftGodot MultiplayerSpawner.swift
[659/889] Compiling SwiftGodot MultiplayerSynchronizer.swift
[660/889] Compiling SwiftGodot Mutex.swift
[661/889] Compiling SwiftGodot NavigationAgent2D.swift
[662/889] Compiling SwiftGodot NavigationAgent3D.swift
[663/889] Compiling SwiftGodot NavigationLink2D.swift
[664/889] Compiling SwiftGodot NavigationLink3D.swift
[665/889] Compiling SwiftGodot NavigationMesh.swift
[666/889] Compiling SwiftGodot NavigationMeshGenerator.swift
[667/889] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[668/889] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[669/889] Compiling SwiftGodot NavigationObstacle2D.swift
[670/889] Compiling SwiftGodot NavigationObstacle3D.swift
[671/889] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[672/889] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[673/889] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[674/889] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[675/914] Compiling SwiftGodot OpenXRActionMap.swift
[676/914] Compiling SwiftGodot OpenXRActionSet.swift
[677/914] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[678/914] Compiling SwiftGodot OpenXRHand.swift
[679/914] Compiling SwiftGodot OpenXRIPBinding.swift
[680/914] Compiling SwiftGodot OpenXRInteractionProfile.swift
[681/914] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[682/914] Compiling SwiftGodot OpenXRInterface.swift
[683/914] Compiling SwiftGodot OptimizedTranslation.swift
[684/914] Compiling SwiftGodot OptionButton.swift
[685/914] Compiling SwiftGodot PCKPacker.swift
[686/914] Compiling SwiftGodot PackedDataContainer.swift
[687/914] Compiling SwiftGodot PackedDataContainerRef.swift
[688/914] Compiling SwiftGodot PackedScene.swift
[689/914] Compiling SwiftGodot PacketPeer.swift
[690/914] Compiling SwiftGodot PacketPeerDTLS.swift
[691/914] Compiling SwiftGodot PacketPeerExtension.swift
[692/914] Compiling SwiftGodot PacketPeerStream.swift
[693/914] Compiling SwiftGodot PacketPeerUDP.swift
[694/914] Compiling SwiftGodot Panel.swift
[695/914] Compiling SwiftGodot PanelContainer.swift
[696/914] Compiling SwiftGodot PanoramaSkyMaterial.swift
[697/914] Compiling SwiftGodot ParallaxBackground.swift
[698/914] Compiling SwiftGodot ParallaxLayer.swift
[699/914] Compiling SwiftGodot ParticleProcessMaterial.swift
[700/939] Compiling SwiftGodot EditorVCSInterface.swift
[701/939] Compiling SwiftGodot EncodedObjectAsID.swift
[702/939] Compiling SwiftGodot Engine.swift
[703/939] Compiling SwiftGodot EngineDebugger.swift
[704/939] Compiling SwiftGodot EngineProfiler.swift
[705/939] Compiling SwiftGodot Environment.swift
[706/939] Compiling SwiftGodot Expression.swift
[707/939] Compiling SwiftGodot FastNoiseLite.swift
[708/939] Compiling SwiftGodot FileAccess.swift
[709/939] Compiling SwiftGodot FileDialog.swift
[710/939] Compiling SwiftGodot FileSystemDock.swift
[711/939] Compiling SwiftGodot FlowContainer.swift
[712/939] Compiling SwiftGodot FogMaterial.swift
[713/939] Compiling SwiftGodot FogVolume.swift
[714/939] Compiling SwiftGodot Font.swift
[715/939] Compiling SwiftGodot FontFile.swift
[716/939] Compiling SwiftGodot FontVariation.swift
[717/939] Compiling SwiftGodot GDExtension.swift
[718/939] Compiling SwiftGodot GDExtensionManager.swift
[719/939] Compiling SwiftGodot GDScript.swift
[720/939] Compiling SwiftGodot GLTFAccessor.swift
[721/939] Compiling SwiftGodot GLTFAnimation.swift
[722/939] Compiling SwiftGodot GLTFBufferView.swift
[723/939] Compiling SwiftGodot GLTFCamera.swift
[724/939] Compiling SwiftGodot GLTFDocument.swift
[725/964] Compiling SwiftGodot NavigationPolygon.swift
[726/964] Compiling SwiftGodot NavigationRegion2D.swift
[727/964] Compiling SwiftGodot NavigationRegion3D.swift
[728/964] Compiling SwiftGodot NavigationServer2D.swift
[729/964] Compiling SwiftGodot NavigationServer3D.swift
[730/964] Compiling SwiftGodot NinePatchRect.swift
[731/964] Compiling SwiftGodot Node.swift
[732/964] Compiling SwiftGodot Node2D.swift
[733/964] Compiling SwiftGodot Node3D.swift
[734/964] Compiling SwiftGodot Node3DGizmo.swift
[735/964] Compiling SwiftGodot Noise.swift
[736/964] Compiling SwiftGodot NoiseTexture2D.swift
[737/964] Compiling SwiftGodot NoiseTexture3D.swift
[738/964] Compiling SwiftGodot ORMMaterial3D.swift
[739/964] Compiling SwiftGodot OS.swift
[740/964] Compiling SwiftGodot Object.swift
[741/964] Compiling SwiftGodot Occluder3D.swift
[742/964] Compiling SwiftGodot OccluderInstance3D.swift
[743/964] Compiling SwiftGodot OccluderPolygon2D.swift
[744/964] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[745/964] Compiling SwiftGodot OggPacketSequence.swift
[746/964] Compiling SwiftGodot OggPacketSequencePlayback.swift
[747/964] Compiling SwiftGodot OmniLight3D.swift
[748/964] Compiling SwiftGodot OpenXRAPIExtension.swift
[749/964] Compiling SwiftGodot OpenXRAction.swift
[750/989] Compiling SwiftGodot ResourceFormatSaver.swift
[751/989] Compiling SwiftGodot ResourceImporter.swift
[752/989] Compiling SwiftGodot ResourceImporterBMFont.swift
[753/989] Compiling SwiftGodot ResourceImporterBitMap.swift
[754/989] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
[755/989] Compiling SwiftGodot ResourceImporterDynamicFont.swift
[756/989] Compiling SwiftGodot ResourceImporterImage.swift
[757/989] Compiling SwiftGodot ResourceImporterImageFont.swift
[758/989] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
[759/989] Compiling SwiftGodot ResourceImporterMP3.swift
[760/989] Compiling SwiftGodot ResourceImporterOBJ.swift
[761/989] Compiling SwiftGodot ResourceImporterOggVorbis.swift
[762/989] Compiling SwiftGodot ResourceImporterScene.swift
[763/989] Compiling SwiftGodot ResourceImporterShaderFile.swift
[764/989] Compiling SwiftGodot ResourceImporterTexture.swift
[765/989] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
[766/989] Compiling SwiftGodot ResourceImporterWAV.swift
[767/989] Compiling SwiftGodot ResourceLoader.swift
[768/989] Compiling SwiftGodot ResourcePreloader.swift
[769/989] Compiling SwiftGodot ResourceSaver.swift
[770/989] Compiling SwiftGodot ResourceUID.swift
[771/989] Compiling SwiftGodot RibbonTrailMesh.swift
[772/989] Compiling SwiftGodot RichTextEffect.swift
[773/989] Compiling SwiftGodot RichTextLabel.swift
[774/989] Compiling SwiftGodot RigidBody2D.swift
[775/1014] Compiling SwiftGodot PolygonOccluder3D.swift
[776/1014] Compiling SwiftGodot PolygonPathFinder.swift
[777/1014] Compiling SwiftGodot Popup.swift
[778/1014] Compiling SwiftGodot PopupMenu.swift
[779/1014] Compiling SwiftGodot PopupPanel.swift
[780/1014] Compiling SwiftGodot PortableCompressedTexture2D.swift
[781/1014] Compiling SwiftGodot PrimitiveMesh.swift
[782/1014] Compiling SwiftGodot PrismMesh.swift
[783/1014] Compiling SwiftGodot ProceduralSkyMaterial.swift
[784/1014] Compiling SwiftGodot ProgressBar.swift
[785/1014] Compiling SwiftGodot ProjectSettings.swift
[786/1014] Compiling SwiftGodot PropertyTweener.swift
[787/1014] Compiling SwiftGodot QuadMesh.swift
[788/1014] Compiling SwiftGodot QuadOccluder3D.swift
[789/1014] Compiling SwiftGodot RDAttachmentFormat.swift
[790/1014] Compiling SwiftGodot RDFramebufferPass.swift
[791/1014] Compiling SwiftGodot RDPipelineColorBlendState.swift
[792/1014] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[793/1014] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[794/1014] Compiling SwiftGodot RDPipelineMultisampleState.swift
[795/1014] Compiling SwiftGodot RDPipelineRasterizationState.swift
[796/1014] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[797/1014] Compiling SwiftGodot RDSamplerState.swift
[798/1014] Compiling SwiftGodot RDShaderFile.swift
[799/1014] Compiling SwiftGodot RDShaderSPIRV.swift
[800/1039] Compiling SwiftGodot PhysicsServer2DManager.swift
[801/1039] Compiling SwiftGodot PhysicsServer3D.swift
[802/1039] Compiling SwiftGodot PhysicsServer3DExtension.swift
[803/1039] Compiling SwiftGodot PhysicsServer3DManager.swift
[804/1039] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[805/1039] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[806/1039] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[807/1039] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[808/1039] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[809/1039] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[810/1039] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[811/1039] Compiling SwiftGodot PinJoint2D.swift
[812/1039] Compiling SwiftGodot PinJoint3D.swift
[813/1039] Compiling SwiftGodot PlaceholderCubemap.swift
[814/1039] Compiling SwiftGodot PlaceholderCubemapArray.swift
[815/1039] Compiling SwiftGodot PlaceholderMaterial.swift
[816/1039] Compiling SwiftGodot PlaceholderMesh.swift
[817/1039] Compiling SwiftGodot PlaceholderTexture2D.swift
[818/1039] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[819/1039] Compiling SwiftGodot PlaceholderTexture3D.swift
[820/1039] Compiling SwiftGodot PlaceholderTextureLayered.swift
[821/1039] Compiling SwiftGodot PlaneMesh.swift
[822/1039] Compiling SwiftGodot PointLight2D.swift
[823/1039] Compiling SwiftGodot PointMesh.swift
[824/1039] Compiling SwiftGodot Polygon2D.swift
[825/1063] Compiling SwiftGodot RigidBody3D.swift
[826/1063] Compiling SwiftGodot RootMotionView.swift
[827/1063] Compiling SwiftGodot SceneMultiplayer.swift
[828/1063] Compiling SwiftGodot SceneReplicationConfig.swift
[829/1063] Compiling SwiftGodot SceneState.swift
[830/1063] Compiling SwiftGodot SceneTree.swift
[831/1063] Compiling SwiftGodot SceneTreeTimer.swift
[832/1063] Compiling SwiftGodot Script.swift
[833/1063] Compiling SwiftGodot ScriptCreateDialog.swift
[834/1063] Compiling SwiftGodot ScriptEditor.swift
[835/1063] Compiling SwiftGodot ScriptEditorBase.swift
[836/1063] Compiling SwiftGodot ScriptExtension.swift
[837/1063] Compiling SwiftGodot ScriptLanguage.swift
[838/1063] Compiling SwiftGodot ScriptLanguageExtension.swift
[839/1063] Compiling SwiftGodot ScrollBar.swift
[840/1063] Compiling SwiftGodot ScrollContainer.swift
[841/1063] Compiling SwiftGodot SegmentShape2D.swift
[842/1063] Compiling SwiftGodot Semaphore.swift
[843/1063] Compiling SwiftGodot SeparationRayShape2D.swift
[844/1063] Compiling SwiftGodot SeparationRayShape3D.swift
[845/1063] Compiling SwiftGodot Separator.swift
[846/1063] Compiling SwiftGodot Shader.swift
[847/1063] Compiling SwiftGodot ShaderGlobalsOverride.swift
[848/1063] Compiling SwiftGodot ShaderInclude.swift
[849/1063] Compiling SwiftGodot ShaderMaterial.swift
[850/1087] Compiling SwiftGodot Path2D.swift
[851/1087] Compiling SwiftGodot Path3D.swift
[852/1087] Compiling SwiftGodot PathFollow2D.swift
[853/1087] Compiling SwiftGodot PathFollow3D.swift
[854/1087] Compiling SwiftGodot Performance.swift
[855/1087] Compiling SwiftGodot PhysicalBone2D.swift
[856/1087] Compiling SwiftGodot PhysicalBone3D.swift
[857/1087] Compiling SwiftGodot PhysicalSkyMaterial.swift
[858/1087] Compiling SwiftGodot PhysicsBody2D.swift
[859/1087] Compiling SwiftGodot PhysicsBody3D.swift
[860/1087] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[861/1087] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[862/1087] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[863/1087] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[864/1087] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[865/1087] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[866/1087] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[867/1087] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[868/1087] Compiling SwiftGodot PhysicsMaterial.swift
[869/1087] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[870/1087] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[871/1087] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[872/1087] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[873/1087] Compiling SwiftGodot PhysicsServer2D.swift
[874/1087] Compiling SwiftGodot PhysicsServer2DExtension.swift
[875/1111] Compiling SwiftGodot SphereMesh.swift
[876/1111] Compiling SwiftGodot SphereOccluder3D.swift
[877/1111] Compiling SwiftGodot SphereShape3D.swift
[878/1111] Compiling SwiftGodot SpinBox.swift
[879/1111] Compiling SwiftGodot SplitContainer.swift
[880/1111] Compiling SwiftGodot SpotLight3D.swift
[881/1111] Compiling SwiftGodot SpringArm3D.swift
[882/1111] Compiling SwiftGodot Sprite2D.swift
[883/1111] Compiling SwiftGodot Sprite3D.swift
[884/1111] Compiling SwiftGodot SpriteBase3D.swift
[885/1111] Compiling SwiftGodot SpriteFrames.swift
[886/1111] Compiling SwiftGodot StandardMaterial3D.swift
[887/1111] Compiling SwiftGodot StaticBody2D.swift
[888/1111] Compiling SwiftGodot StaticBody3D.swift
[889/1111] Compiling SwiftGodot StreamPeer.swift
[890/1111] Compiling SwiftGodot StreamPeerBuffer.swift
[891/1111] Compiling SwiftGodot StreamPeerExtension.swift
[892/1111] Compiling SwiftGodot StreamPeerGZIP.swift
[893/1111] Compiling SwiftGodot StreamPeerTCP.swift
[894/1111] Compiling SwiftGodot StreamPeerTLS.swift
[895/1111] Compiling SwiftGodot StyleBox.swift
[896/1111] Compiling SwiftGodot StyleBoxEmpty.swift
[897/1111] Compiling SwiftGodot StyleBoxFlat.swift
[898/1111] Compiling SwiftGodot StyleBoxLine.swift
[899/1111] Compiling SwiftGodot StyleBoxTexture.swift
[900/1135] Compiling SwiftGodot Shape2D.swift
[901/1135] Compiling SwiftGodot Shape3D.swift
[902/1135] Compiling SwiftGodot ShapeCast2D.swift
[903/1135] Compiling SwiftGodot ShapeCast3D.swift
[904/1135] Compiling SwiftGodot Shortcut.swift
[905/1135] Compiling SwiftGodot Skeleton2D.swift
[906/1135] Compiling SwiftGodot Skeleton3D.swift
[907/1135] Compiling SwiftGodot SkeletonIK3D.swift
[908/1135] Compiling SwiftGodot SkeletonModification2D.swift
[909/1135] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[910/1135] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[911/1135] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[912/1135] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[913/1135] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[914/1135] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[915/1135] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[916/1135] Compiling SwiftGodot SkeletonModificationStack2D.swift
[917/1135] Compiling SwiftGodot SkeletonProfile.swift
[918/1135] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[919/1135] Compiling SwiftGodot Skin.swift
[920/1135] Compiling SwiftGodot SkinReference.swift
[921/1135] Compiling SwiftGodot Sky.swift
[922/1135] Compiling SwiftGodot Slider.swift
[923/1135] Compiling SwiftGodot SliderJoint3D.swift
[924/1135] Compiling SwiftGodot SoftBody3D.swift
[925/1159] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[926/1159] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[927/1159] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[928/1159] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[929/1159] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[930/1159] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[931/1159] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[932/1159] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[933/1159] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[934/1159] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[935/1159] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[936/1159] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[937/1159] Compiling SwiftGodot VisualShaderNodeRemap.swift
[938/1159] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[939/1159] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[940/1159] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[941/1159] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[942/1159] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[943/1159] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[944/1159] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[945/1159] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[946/1159] Compiling SwiftGodot VisualShaderNodeStep.swift
[947/1159] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[948/1159] Compiling SwiftGodot VisualShaderNodeTexture.swift
[949/1183] Compiling SwiftGodot VisualShaderNodeExpression.swift
[950/1183] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[951/1183] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[952/1183] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[953/1183] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[954/1183] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[955/1183] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[956/1183] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[957/1183] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[958/1183] Compiling SwiftGodot VisualShaderNodeIf.swift
[959/1183] Compiling SwiftGodot VisualShaderNodeInput.swift
[960/1183] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[961/1183] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[962/1183] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[963/1183] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[964/1183] Compiling SwiftGodot VisualShaderNodeIs.swift
[965/1183] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[966/1183] Compiling SwiftGodot VisualShaderNodeMix.swift
[967/1183] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[968/1183] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[969/1183] Compiling SwiftGodot VisualShaderNodeOutput.swift
[970/1183] Compiling SwiftGodot VisualShaderNodeParameter.swift
[971/1183] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[972/1183] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[973/1183] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[974/1183] Compiling SwiftGodot VisualInstance3D.swift
[975/1183] Compiling SwiftGodot VisualShader.swift
[976/1183] Compiling SwiftGodot VisualShaderNode.swift
[977/1183] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[978/1183] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[979/1183] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[980/1183] Compiling SwiftGodot VisualShaderNodeClamp.swift
[981/1183] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[982/1183] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[983/1183] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[984/1183] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[985/1183] Compiling SwiftGodot VisualShaderNodeComment.swift
[986/1183] Compiling SwiftGodot VisualShaderNodeCompare.swift
[987/1183] Compiling SwiftGodot VisualShaderNodeConstant.swift
[988/1183] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[989/1183] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[990/1183] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[991/1183] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[992/1183] Compiling SwiftGodot VisualShaderNodeCustom.swift
[993/1183] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[994/1183] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[995/1183] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[996/1183] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[997/1183] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[998/1183] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[999/1183] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[1000/1183] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[1001/1183] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[1002/1183] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[1003/1183] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[1004/1183] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[1005/1183] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[1006/1183] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[1007/1183] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[1008/1183] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[1009/1183] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[1010/1183] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[1011/1183] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[1012/1183] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[1013/1183] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[1014/1183] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[1015/1183] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[1016/1183] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[1017/1183] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[1018/1183] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[1019/1183] Compiling SwiftGodot VisualShaderNodeVarying.swift
[1020/1183] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[1021/1183] Compiling SwiftGodot TriangleMesh.swift
[1022/1183] Compiling SwiftGodot TubeTrailMesh.swift
[1023/1183] Compiling SwiftGodot Tween.swift
[1024/1183] Compiling SwiftGodot Tweener.swift
[1025/1183] Compiling SwiftGodot UDPServer.swift
[1026/1183] Compiling SwiftGodot UPNP.swift
[1027/1183] Compiling SwiftGodot UPNPDevice.swift
[1028/1183] Compiling SwiftGodot UndoRedo.swift
[1029/1183] Compiling SwiftGodot VBoxContainer.swift
[1030/1183] Compiling SwiftGodot VFlowContainer.swift
[1031/1183] Compiling SwiftGodot VScrollBar.swift
[1032/1183] Compiling SwiftGodot VSeparator.swift
[1033/1183] Compiling SwiftGodot VSlider.swift
[1034/1183] Compiling SwiftGodot VSplitContainer.swift
[1035/1183] Compiling SwiftGodot VehicleBody3D.swift
[1036/1183] Compiling SwiftGodot VehicleWheel3D.swift
[1037/1183] Compiling SwiftGodot VideoStream.swift
[1038/1183] Compiling SwiftGodot VideoStreamPlayback.swift
[1039/1183] Compiling SwiftGodot VideoStreamPlayer.swift
[1040/1183] Compiling SwiftGodot VideoStreamTheora.swift
[1041/1183] Compiling SwiftGodot Viewport.swift
[1042/1183] Compiling SwiftGodot ViewportTexture.swift
[1043/1183] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[1044/1183] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[1045/1183] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[1046/1183] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[1047/1183] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[1048/1183] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[1049/1183] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[1050/1183] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[1051/1183] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[1052/1183] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[1053/1183] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[1054/1183] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[1055/1183] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[1056/1183] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[1057/1183] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[1058/1183] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[1059/1183] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[1060/1183] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[1061/1183] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[1062/1183] Compiling SwiftGodot VoxelGI.swift
[1063/1183] Compiling SwiftGodot VoxelGIData.swift
[1064/1183] Compiling SwiftGodot WeakRef.swift
[1065/1183] Compiling SwiftGodot WebRTCDataChannel.swift
[1066/1183] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[1067/1183] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[1068/1183] Compiling SwiftGodot WebRTCPeerConnection.swift
[1069/1183] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[1070/1183] Compiling SwiftGodot RDShaderSource.swift
[1071/1183] Compiling SwiftGodot RDTextureFormat.swift
[1072/1183] Compiling SwiftGodot RDTextureView.swift
[1073/1183] Compiling SwiftGodot RDUniform.swift
[1074/1183] Compiling SwiftGodot RDVertexAttribute.swift
[1075/1183] Compiling SwiftGodot RandomNumberGenerator.swift
[1076/1183] Compiling SwiftGodot Range.swift
[1077/1183] Compiling SwiftGodot RayCast2D.swift
[1078/1183] Compiling SwiftGodot RayCast3D.swift
[1079/1183] Compiling SwiftGodot RectangleShape2D.swift
[1080/1183] Compiling SwiftGodot RefCounted.swift
[1081/1183] Compiling SwiftGodot ReferenceRect.swift
[1082/1183] Compiling SwiftGodot ReflectionProbe.swift
[1083/1183] Compiling SwiftGodot RegEx.swift
[1084/1183] Compiling SwiftGodot RegExMatch.swift
[1085/1183] Compiling SwiftGodot RemoteTransform2D.swift
[1086/1183] Compiling SwiftGodot RemoteTransform3D.swift
[1087/1183] Compiling SwiftGodot RenderingDevice.swift
[1088/1183] Compiling SwiftGodot RenderingServer.swift
[1089/1183] Compiling SwiftGodot RenderSceneBuffers.swift
[1090/1183] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
[1091/1183] Compiling SwiftGodot RenderSceneBuffersExtension.swift
[1092/1183] Compiling SwiftGodot RenderSceneBuffersRD.swift
[1093/1183] Compiling SwiftGodot Resource.swift
[1094/1183] Compiling SwiftGodot ResourceFormatLoader.swift
[1095/1183] Compiling SwiftGodot TextureButton.swift
[1096/1183] Compiling SwiftGodot TextureCubemapArrayRD.swift
[1097/1183] Compiling SwiftGodot TextureCubemapRD.swift
[1098/1183] Compiling SwiftGodot TextureLayered.swift
[1099/1183] Compiling SwiftGodot TextureLayeredRD.swift
[1100/1183] Compiling SwiftGodot TextureProgressBar.swift
[1101/1183] Compiling SwiftGodot TextureRect.swift
[1102/1183] Compiling SwiftGodot Theme.swift
[1103/1183] Compiling SwiftGodot ThemeDB.swift
[1104/1183] Compiling SwiftGodot Thread.swift
[1105/1183] Compiling SwiftGodot TileData.swift
[1106/1183] Compiling SwiftGodot TileMap.swift
[1107/1183] Compiling SwiftGodot TileMapPattern.swift
[1108/1183] Compiling SwiftGodot TileSet.swift
[1109/1183] Compiling SwiftGodot TileSetAtlasSource.swift
[1110/1183] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[1111/1183] Compiling SwiftGodot TileSetSource.swift
[1112/1183] Compiling SwiftGodot Time.swift
[1113/1183] Compiling SwiftGodot Timer.swift
[1114/1183] Compiling SwiftGodot TorusMesh.swift
[1115/1183] Compiling SwiftGodot TouchScreenButton.swift
[1116/1183] Compiling SwiftGodot Translation.swift
[1117/1183] Compiling SwiftGodot TranslationServer.swift
[1118/1183] Compiling SwiftGodot Tree.swift
[1119/1183] Compiling SwiftGodot TreeItem.swift
[1120/1183] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[1121/1183] Compiling SwiftGodot WebSocketPeer.swift
[1122/1183] Compiling SwiftGodot WebXRInterface.swift
[1123/1183] Compiling SwiftGodot Window.swift
[1124/1183] Compiling SwiftGodot WorkerThreadPool.swift
[1125/1183] Compiling SwiftGodot World2D.swift
[1126/1183] Compiling SwiftGodot World3D.swift
[1127/1183] Compiling SwiftGodot WorldBoundaryShape2D.swift
[1128/1183] Compiling SwiftGodot WorldBoundaryShape3D.swift
[1129/1183] Compiling SwiftGodot WorldEnvironment.swift
[1130/1183] Compiling SwiftGodot X509Certificate.swift
[1131/1183] Compiling SwiftGodot XMLParser.swift
[1132/1183] Compiling SwiftGodot XRAnchor3D.swift
[1133/1183] Compiling SwiftGodot XRCamera3D.swift
[1134/1183] Compiling SwiftGodot XRController3D.swift
[1135/1183] Compiling SwiftGodot XRInterface.swift
[1136/1183] Compiling SwiftGodot XRInterfaceExtension.swift
[1137/1183] Compiling SwiftGodot XRNode3D.swift
[1138/1183] Compiling SwiftGodot XROrigin3D.swift
[1139/1183] Compiling SwiftGodot XRPose.swift
[1140/1183] Compiling SwiftGodot XRPositionalTracker.swift
[1141/1183] Compiling SwiftGodot XRServer.swift
[1142/1183] Compiling SwiftGodot ZIPPacker.swift
[1143/1183] Compiling SwiftGodot ZIPReader.swift
[1144/1183] Compiling SwiftGodot SubViewport.swift
[1145/1183] Compiling SwiftGodot SubViewportContainer.swift
[1146/1183] Compiling SwiftGodot SurfaceTool.swift
[1147/1183] Compiling SwiftGodot SyntaxHighlighter.swift
[1148/1183] Compiling SwiftGodot SystemFont.swift
[1149/1183] Compiling SwiftGodot TCPServer.swift
[1150/1183] Compiling SwiftGodot TLSOptions.swift
[1151/1183] Compiling SwiftGodot TabBar.swift
[1152/1183] Compiling SwiftGodot TabContainer.swift
[1153/1183] Compiling SwiftGodot TextEdit.swift
[1154/1183] Compiling SwiftGodot TextLine.swift
[1155/1183] Compiling SwiftGodot TextMesh.swift
[1156/1183] Compiling SwiftGodot TextParagraph.swift
[1157/1183] Compiling SwiftGodot TextServer.swift
[1158/1183] Compiling SwiftGodot TextServerAdvanced.swift
[1159/1183] Compiling SwiftGodot TextServerDummy.swift
[1160/1183] Compiling SwiftGodot TextServerExtension.swift
[1161/1183] Compiling SwiftGodot TextServerManager.swift
[1162/1183] Compiling SwiftGodot Texture.swift
[1163/1183] Compiling SwiftGodot Texture2D.swift
[1164/1183] Compiling SwiftGodot Texture2DArray.swift
[1165/1183] Compiling SwiftGodot Texture2DArrayRD.swift
[1166/1183] Compiling SwiftGodot Texture2DRD.swift
[1167/1183] Compiling SwiftGodot Texture3D.swift
[1168/1183] Compiling SwiftGodot Texture3DRD.swift
[1169/1183] Emitting module SwiftGodot
[1169/1183] Write Objects.LinkFileList
[1170/1183] Linking libSwiftGodot.dylib
[1172/1185] Emitting module SwiftGodotKit
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGodotKit/SwiftGodotKit.swift:10:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftGodotKit' may lead to instability during execution
8 | import SwiftGodot
9 | import libgodot
10 | @_implementationOnly import GDExtension
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftGodotKit' may lead to instability during execution
11 |
12 | // Callbacks that the user provides
[1173/1185] Compiling SwiftGodotKit SwiftGodotKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGodotKit/SwiftGodotKit.swift:10:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftGodotKit' may lead to instability during execution
8 | import SwiftGodot
9 | import libgodot
10 | @_implementationOnly import GDExtension
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftGodotKit' may lead to instability during execution
11 |
12 | // Callbacks that the user provides
[1174/1198] Emitting module Properties
[1175/1198] Compiling Properties PropertyDump.swift
[1175/1198] Write Objects.LinkFileList
[1177/1198] Emitting module TrivialSample
/Users/admin/builder/spi-builder-workspace/Sources/TrivialSample/main.swift:56:7: warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
54 | print ("Elements: \(properties.count)")
55 | let a = GArray()
56 | a.append(value: Variant ("Hello"))
| |- warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
| `- note: use 'append(_:)' instead
57 | a.append(value: Variant ("Word"))
58 | a.append(value: Variant ("Foo"))
/Users/admin/builder/spi-builder-workspace/Sources/TrivialSample/main.swift:57:7: warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
55 | let a = GArray()
56 | a.append(value: Variant ("Hello"))
57 | a.append(value: Variant ("Word"))
| |- warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
| `- note: use 'append(_:)' instead
58 | a.append(value: Variant ("Foo"))
59 | for x in a {
/Users/admin/builder/spi-builder-workspace/Sources/TrivialSample/main.swift:58:7: warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
56 | a.append(value: Variant ("Hello"))
57 | a.append(value: Variant ("Word"))
58 | a.append(value: Variant ("Foo"))
| |- warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
| `- note: use 'append(_:)' instead
59 | for x in a {
60 | print ("value is \(x)")
[1178/1198] Compiling TrivialSample main.swift
/Users/admin/builder/spi-builder-workspace/Sources/TrivialSample/main.swift:56:7: warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
54 | print ("Elements: \(properties.count)")
55 | let a = GArray()
56 | a.append(value: Variant ("Hello"))
| |- warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
| `- note: use 'append(_:)' instead
57 | a.append(value: Variant ("Word"))
58 | a.append(value: Variant ("Foo"))
/Users/admin/builder/spi-builder-workspace/Sources/TrivialSample/main.swift:57:7: warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
55 | let a = GArray()
56 | a.append(value: Variant ("Hello"))
57 | a.append(value: Variant ("Word"))
| |- warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
| `- note: use 'append(_:)' instead
58 | a.append(value: Variant ("Foo"))
59 | for x in a {
/Users/admin/builder/spi-builder-workspace/Sources/TrivialSample/main.swift:58:7: warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
56 | a.append(value: Variant ("Hello"))
57 | a.append(value: Variant ("Word"))
58 | a.append(value: Variant ("Foo"))
| |- warning: 'append(value:)' is deprecated: This method signature has been deprecated in favor of append(_:)
| `- note: use 'append(_:)' instead
59 | for x in a {
60 | print ("value is \(x)")
[1179/1198] Emitting module UglySample
[1180/1198] Compiling UglySample main.swift
[1180/1198] Write Objects.LinkFileList
[1183/1198] Compiling Dodge main.swift
[1184/1198] Compiling Dodge Player.swift
[1185/1198] Compiling Dodge resource_bundle_accessor.swift
[1186/1198] Compiling Dodge Hud.swift
[1187/1198] Compiling Dodge Mob.swift
[1188/1198] Emitting module Dodge
[1189/1198] Compiling Dodge DodgeMain.swift
[1189/1198] Write Objects.LinkFileList
[1190/1198] Linking Properties
[1191/1198] Applying Properties
[1192/1198] Linking TrivialSample
[1193/1198] Linking UglySample
[1194/1198] Applying TrivialSample
[1195/1198] Applying UglySample
[1196/1198] Linking Dodge
[1197/1198] Applying Dodge
Build complete! (55.46s)
Build complete.
{
"dependencies" : [
{
"identity" : "swiftgodot",
"requirement" : {
"revision" : [
"fe24cb01640c2d4d48c8555a71adfe346d9543cf"
]
},
"type" : "sourceControl",
"url" : "https://github.com/migueldeicaza/SwiftGodot"
}
],
"manifest_display_name" : "SwiftGodotKit",
"name" : "SwiftGodotKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SwiftGodotKit",
"targets" : [
"SwiftGodotKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Dodge",
"targets" : [
"Dodge"
],
"type" : {
"executable" : null
}
},
{
"name" : "UglySample",
"targets" : [
"UglySample"
],
"type" : {
"executable" : null
}
},
{
"name" : "Properties",
"targets" : [
"Properties"
],
"type" : {
"executable" : null
}
},
{
"name" : "TrivialSample",
"targets" : [
"TrivialSample"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "libgodot",
"module_type" : "SystemLibraryTarget",
"name" : "libgodot",
"path" : "Sources/libgodot",
"product_memberships" : [
"SwiftGodotKit",
"Dodge",
"UglySample",
"Properties",
"TrivialSample"
],
"sources" : [
],
"type" : "system-target"
},
{
"c99name" : "binary_libgodot",
"module_type" : "BinaryTarget",
"name" : "binary_libgodot",
"path" : "remote/archive/libgodot.xcframework.zip",
"product_memberships" : [
"SwiftGodotKit",
"Dodge",
"UglySample",
"Properties",
"TrivialSample"
],
"sources" : [
],
"type" : "binary"
},
{
"c99name" : "UglySample",
"module_type" : "SwiftTarget",
"name" : "UglySample",
"path" : "Sources/UglySample",
"product_memberships" : [
"UglySample"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"SwiftGodotKit"
],
"type" : "executable"
},
{
"c99name" : "TrivialSample",
"module_type" : "SwiftTarget",
"name" : "TrivialSample",
"path" : "Sources/TrivialSample",
"product_memberships" : [
"TrivialSample"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"SwiftGodotKit"
],
"type" : "executable"
},
{
"c99name" : "SwiftGodotKit",
"module_type" : "SwiftTarget",
"name" : "SwiftGodotKit",
"path" : "Sources/SwiftGodotKit",
"product_dependencies" : [
"SwiftGodot"
],
"product_memberships" : [
"SwiftGodotKit",
"Dodge",
"UglySample",
"Properties",
"TrivialSample"
],
"sources" : [
"SwiftGodotKit.swift"
],
"target_dependencies" : [
"binary_libgodot",
"libgodot"
],
"type" : "library"
},
{
"c99name" : "Properties",
"module_type" : "SwiftTarget",
"name" : "Properties",
"path" : "Sources/Properties",
"product_memberships" : [
"Properties"
],
"sources" : [
"PropertyDump.swift"
],
"target_dependencies" : [
"SwiftGodotKit"
],
"type" : "executable"
},
{
"c99name" : "Dodge",
"module_type" : "SwiftTarget",
"name" : "Dodge",
"path" : "Sources/Dodge",
"product_memberships" : [
"Dodge"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/Dodge/Project",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"DodgeMain.swift",
"Hud.swift",
"Mob.swift",
"Player.swift",
"main.swift"
],
"target_dependencies" : [
"SwiftGodotKit",
"binary_libgodot",
"libgodot"
],
"type" : "executable"
}
],
"tools_version" : "5.9"
}
Done.