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