Build Information
Failed to build SwiftGodot, reference v0.70.0 (0c2b1c), with Swift 6.1 for macOS (SPM) on 13 Dec 2025 23:24:38 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
37 |
38 | /// Utility that trims whitespace and removes the `.swift` suffix when present.
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:79:26: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
65 |
66 | /// Finds the closest ancestor that is part of the whitelist, falling back to `Object`.
67 | func fallbackClassName(for original: String) -> String {
| `- note: add '@MainActor' to make global function 'fallbackClassName(for:)' part of global actor 'MainActor'
68 | guard classFilterProvided else {
69 | return original
:
77 | print("Looking for \(original) but did not exist in \(args)")
78 | var currentName = original
79 | while let inherits = classMap[currentName]?.inherits {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
80 | if availableClassNames.contains(inherits) {
81 | return inherits
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:216:28: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
214 | translation = .direct
215 | } else {
216 | if builtinSizes[src.type] != nil && src.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
217 | translation = .contentRef
218 | } else if classMap[src.type] != nil {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:202:5: note: var declared here
200 |
201 | let buildConfiguration: String = "float_64"
202 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
203 | for cs in jsonApi.builtinClassSizes {
204 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:218:35: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
216 | if builtinSizes[src.type] != nil && src.type != "Object" {
217 | translation = .contentRef
218 | } else if classMap[src.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
219 | if options.contains(.nonOptionalObjects) {
220 | translation = .objectRef(isOptional: false)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:573:42: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
465 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
466 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
467 | func generateMethod(_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, generatedMethodKind: GeneratedMethodKind, asSingleton: Bool) throws -> String? {
| `- note: add '@MainActor' to make global function 'generateMethod(_:method:className:cdef:usedMethods:generatedMethodKind:asSingleton:)' part of global actor 'MainActor'
468 |
469 | let arguments = method.arguments ?? []
:
571 | var signatureArgs: [String] = []
572 | let godotReturnType = method.returnValue?.type
573 | let godotReturnTypeIsReferenceType = classMap [godotReturnType ?? ""] != nil
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
574 | let returnOptional = godotReturnType == "Variant" || godotReturnTypeIsReferenceType && isReturnOptional(className: className, method: method.name)
575 | let returnType = getGodotType(method.returnValue) + (returnOptional ? "?" : "")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:645:27: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
621 | }
622 |
623 | func getCallResultArgument() -> String {
| `- note: add '@MainActor' to make local function 'getCallResultArgument()' part of global actor 'MainActor'
624 | let ptrResult: String
625 | if returnType != "" {
:
643 | } else if frameworkType {
644 | ptrResult = "&_result"
645 | } else if builtinSizes [godotReturnType] != nil {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
646 | ptrResult = "&_result.content"
647 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:202:5: note: var declared here
200 |
201 | let buildConfiguration: String = "float_64"
202 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
203 | for cs in jsonApi.builtinClassSizes {
204 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/MethodGen.swift:713:16: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
465 | /// - usedMethods: a set of methods that have been referenced by properties, to determine whether we make this public or private
466 | /// - Returns: nil, or the method we surfaced that needs to have the virtual supporting infrastructured wired up
467 | func generateMethod(_ p: Printer, method: MethodDefinition, className: String, cdef: JClassInfo?, usedMethods: Set<String>, generatedMethodKind: GeneratedMethodKind, asSingleton: Bool) throws -> String? {
| `- note: add '@MainActor' to make global function 'generateMethod(_:method:className:cdef:usedMethods:generatedMethodKind:asSingleton:)' part of global actor 'MainActor'
468 |
469 | let arguments = method.arguments ?? []
:
711 | isOptional = true
712 | } else {
713 | if classMap [arg.type] != nil {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
714 | isOptional = isMethodArgumentOptional(className: className, method: method.name, arg: arg.name)
715 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
[199/207] Compiling Generator DocModel.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:12:5: warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | @available(macOS 13.0, iOS 16.0, *)
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
| |- warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxConstantParam' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:14:5: warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
| |- warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEnumMethodMember' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:16:5: warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
| |- warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxTypeName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:18:5: warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
| |- warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEmptyLeading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:20:5: warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
| |- warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxUrl' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | // If the string contains a ".", it will return a pair
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:89:19: warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
87 | }
88 | }
89 | for ed in jsonApi.globalEnums {
| `- warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
90 | for ev in ed.values {
91 | if ev.name == txt {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:105:5: note: let declared here
103 |
104 | let jsonData = try! Data(url: URL(fileURLWithPath: jsonFile))
105 | let jsonApi = try! JSONDecoder().decode(JGodotExtensionAPI.self, from: jsonData)
| `- note: let declared here
106 |
107 | func dropMatchingPrefix(_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:107:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
105 | let (type, name) = splitAtLastDot(str: txt)
106 | if type != "" {
107 | if let ldef = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
108 | if let r = lookInDef(def: ldef, match: name, local: false) {
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:111:34: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
110 | }
111 | } else if let ldef = builtinMap[type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
112 | if let r = lookInDef(def: ldef, match: name, local: false) {
113 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:192:5: note: var declared here
190 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
191 |
192 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
193 |
194 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:169:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
167 | var args = ""
168 | if let type {
169 | if let m = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
170 | if let method = findMethod (name: member, on: m) {
171 | args = assembleArgs (method, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:173:31: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
171 | args = assembleArgs (method, method.arguments)
172 | }
173 | } else if let m = builtinMap [type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
174 | if let method = findMethod (name: member, on: m) {
175 | args = assembleArgs(nil, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:192:5: note: var declared here
190 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
191 |
192 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
193 |
194 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:15:5: error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
11 | /// Stores enum definitions so other generator stages (like default-value mapping)
12 | /// can resolve `enum::Type.Value` even when we skip emitting the corresponding type.
13 | func registerEnumDefinition(_ enumDef: JGodotGlobalEnumElement, prefix: String?) {
| `- note: add '@MainActor' to make global function 'registerEnumDefinition(_:prefix:)' part of global actor 'MainActor'
14 | guard let prefix else { return }
15 | globalEnums[prefix + enumDef.name] = enumDef
| `- error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:127:5: note: mutation of this var is only permitted within the actor
125 | }
126 |
127 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: mutation of this var is only permitted within the actor
128 |
129 | // Maps from a the class name to its definition
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:37:22: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
24 |
25 | // The name of the form 'bitfield::'
26 | func findEnumDef (name: String) -> JGodotGlobalEnumElement? {
| `- note: add '@MainActor' to make global function 'findEnumDef(name:)' part of global actor 'MainActor'
27 | guard name.starts(with: "bitfield::") else {
28 | return nil
:
35 | }
36 | let type = full [full.startIndex..<split]
37 | guard let cdef = classMap [String (type)] else {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
38 | print ("Could not find class \(type) for \(name)")
39 | return nil
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
[200/207] Compiling Generator Enums.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:12:5: warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | @available(macOS 13.0, iOS 16.0, *)
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
| |- warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxConstantParam' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:14:5: warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
| |- warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEnumMethodMember' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:16:5: warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
| |- warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxTypeName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:18:5: warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
| |- warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEmptyLeading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:20:5: warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
| |- warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxUrl' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | // If the string contains a ".", it will return a pair
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:89:19: warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
87 | }
88 | }
89 | for ed in jsonApi.globalEnums {
| `- warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
90 | for ev in ed.values {
91 | if ev.name == txt {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:105:5: note: let declared here
103 |
104 | let jsonData = try! Data(url: URL(fileURLWithPath: jsonFile))
105 | let jsonApi = try! JSONDecoder().decode(JGodotExtensionAPI.self, from: jsonData)
| `- note: let declared here
106 |
107 | func dropMatchingPrefix(_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:107:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
105 | let (type, name) = splitAtLastDot(str: txt)
106 | if type != "" {
107 | if let ldef = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
108 | if let r = lookInDef(def: ldef, match: name, local: false) {
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:111:34: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
110 | }
111 | } else if let ldef = builtinMap[type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
112 | if let r = lookInDef(def: ldef, match: name, local: false) {
113 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:192:5: note: var declared here
190 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
191 |
192 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
193 |
194 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:169:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
167 | var args = ""
168 | if let type {
169 | if let m = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
170 | if let method = findMethod (name: member, on: m) {
171 | args = assembleArgs (method, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:173:31: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
171 | args = assembleArgs (method, method.arguments)
172 | }
173 | } else if let m = builtinMap [type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
174 | if let method = findMethod (name: member, on: m) {
175 | args = assembleArgs(nil, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:192:5: note: var declared here
190 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
191 |
192 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
193 |
194 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:15:5: error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
11 | /// Stores enum definitions so other generator stages (like default-value mapping)
12 | /// can resolve `enum::Type.Value` even when we skip emitting the corresponding type.
13 | func registerEnumDefinition(_ enumDef: JGodotGlobalEnumElement, prefix: String?) {
| `- note: add '@MainActor' to make global function 'registerEnumDefinition(_:prefix:)' part of global actor 'MainActor'
14 | guard let prefix else { return }
15 | globalEnums[prefix + enumDef.name] = enumDef
| `- error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:127:5: note: mutation of this var is only permitted within the actor
125 | }
126 |
127 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: mutation of this var is only permitted within the actor
128 |
129 | // Maps from a the class name to its definition
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:37:22: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
24 |
25 | // The name of the form 'bitfield::'
26 | func findEnumDef (name: String) -> JGodotGlobalEnumElement? {
| `- note: add '@MainActor' to make global function 'findEnumDef(name:)' part of global actor 'MainActor'
27 | guard name.starts(with: "bitfield::") else {
28 | return nil
:
35 | }
36 | let type = full [full.startIndex..<split]
37 | guard let cdef = classMap [String (type)] else {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
38 | print ("Could not find class \(type) for \(name)")
39 | return nil
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:130:5: note: var declared here
128 |
129 | // Maps from a the class name to its definition
130 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
131 |
132 | // Tracks whether a Godot type has subclasses, we want to use this
[201/207] Compiling Generator main.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:190:41: error: main actor-isolated var 'structTypes' can not be referenced from a nonisolated context
174 | }
175 |
176 | private var structTypes: Set<String> = [
| `- note: var declared here
177 | "const void*",
178 | "AudioFrame*",
:
188 | /// - parameter type: A type name as found in `extension_api.json`.
189 | /// - returns: True if the type is represented in Swift as simple `struct` with fields (or as a built-in Swift type), not wrapping a handle (pointer) to a native Godot object.
190 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
| | `- error: main actor-isolated var 'structTypes' can not be referenced from a nonisolated context
| `- note: add '@MainActor' to make global function 'isStruct' part of global actor 'MainActor'
191 |
192 | var builtinMap: [String: JGodotBuiltinClass] = [:]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:240:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
238 | struct Generator {
239 | func run() async throws {
240 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
241 | generateUnsafePointerHelpers(coreDefPrinter)
242 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:242:58: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
240 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
241 | generateUnsafePointerHelpers(coreDefPrinter)
242 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
243 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
244 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
1 | import ExtensionApi
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
2 | // main.swift
3 | // SwiftGodot/Generator
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:243:46: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
241 | generateUnsafePointerHelpers(coreDefPrinter)
242 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
243 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
244 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
245 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:244:39: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
242 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
243 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
244 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
245 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
246 |
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:245:39: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
243 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
244 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
245 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
246 |
247 | generateVariantGodotInterface(coreDefPrinter)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:249:58: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
247 | generateVariantGodotInterface(coreDefPrinter)
248 | generateCtorPointers(coreDefPrinter)
249 | generateNativeStructures(coreDefPrinter, values: jsonApi.nativeStructures)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
250 |
251 | if let generatedBuiltinDir {
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:242:9: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
240 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
241 | generateUnsafePointerHelpers(coreDefPrinter)
242 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
| | `- note: property access is 'async'
| `- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
243 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
244 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:249:9: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
247 | generateVariantGodotInterface(coreDefPrinter)
248 | generateCtorPointers(coreDefPrinter)
249 | generateNativeStructures(coreDefPrinter, values: jsonApi.nativeStructures)
| | `- note: property access is 'async'
| `- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
250 |
251 | if let generatedBuiltinDir {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:255:12: error: expression is 'async' but is not marked with 'await'
253 | }
254 |
255 | if combineOutput {
| |- error: expression is 'async' but is not marked with 'await'
| `- note: property access is 'async'
256 | await PrinterFactory.shared.saveMultiplexed(outputDir)
257 | }
[202/207] Emitting module Generator
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:462:5: warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
460 | var skipList = Set<String>()
461 | #else
462 | var okList = Set<String>()
| |- warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'okList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'okList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | var skipList = Set<String>()
464 | #endif
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:463:5: warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
461 | #else
462 | var okList = Set<String>()
463 | var skipList = Set<String>()
| |- warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'skipList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'skipList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
464 | #endif
465 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:12:5: warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | @available(macOS 13.0, iOS 16.0, *)
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
| |- warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxConstantParam' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:14:5: warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
| |- warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEnumMethodMember' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:16:5: warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
| |- warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxTypeName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:18:5: warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
| |- warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEmptyLeading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:20:5: warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
| |- warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxUrl' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | // If the string contains a ".", it will return a pair
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:10:5: warning: var 'classesToGenerate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 |
9 | /// Names of classes (without the `.swift` suffix) that should be generated in this run.
10 | var classesToGenerate: Set<String> = []
| |- warning: var 'classesToGenerate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'classesToGenerate' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'classesToGenerate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | var classFilterProvided = false
12 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:11:5: warning: var 'classFilterProvided' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | /// Names of classes (without the `.swift` suffix) that should be generated in this run.
10 | var classesToGenerate: Set<String> = []
11 | var classFilterProvided = false
| |- warning: var 'classFilterProvided' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'classFilterProvided' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'classFilterProvided' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | /// Names of classes available to be referenced when generating code, including dependencies.
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:14:5: warning: var 'availableClassNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | /// Names of classes available to be referenced when generating code, including dependencies.
14 | var availableClassNames: Set<String> = []
| |- warning: var 'availableClassNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableClassNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'availableClassNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | var availableClassFilterProvided = false
16 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:15:5: warning: var 'availableClassFilterProvided' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// Names of classes available to be referenced when generating code, including dependencies.
14 | var availableClassNames: Set<String> = []
15 | var availableClassFilterProvided = false
| |- warning: var 'availableClassFilterProvided' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableClassFilterProvided' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'availableClassFilterProvided' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | /// Names of builtin types (without the `.swift` suffix) that should be generated in this run.
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:18:5: warning: var 'builtinClassesToGenerate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | /// Names of builtin types (without the `.swift` suffix) that should be generated in this run.
18 | var builtinClassesToGenerate: Set<String> = []
| |- warning: var 'builtinClassesToGenerate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassesToGenerate' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassesToGenerate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | var builtinFilterProvided = false
20 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:19:5: warning: var 'builtinFilterProvided' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | /// Names of builtin types (without the `.swift` suffix) that should be generated in this run.
18 | var builtinClassesToGenerate: Set<String> = []
19 | var builtinFilterProvided = false
| |- warning: var 'builtinFilterProvided' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinFilterProvided' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinFilterProvided' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /// Godot reference types whose Swift wrappers should not be surfaced in this module.
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:23:5: warning: var 'deferredReturnTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 | /// Godot reference types whose Swift wrappers should not be surfaced in this module.
22 | /// Instead, raw helper methods returning `GodotNativeObjectPointer?` will be generated.
23 | var deferredReturnTypes: Set<String> = []
| |- warning: var 'deferredReturnTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'deferredReturnTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'deferredReturnTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Godot reference types that require high-level Swift extensions to be emitted in this module.
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:26:5: warning: var 'deferredExtensionTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | /// Godot reference types that require high-level Swift extensions to be emitted in this module.
26 | var deferredExtensionTypes: Set<String> = []
| |- warning: var 'deferredExtensionTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'deferredExtensionTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'deferredExtensionTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Godot classes (without the `.swift` suffix) that are expected to contain raw helper methods
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:30:5: warning: var 'deferredExtensionSourceClasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// Godot classes (without the `.swift` suffix) that are expected to contain raw helper methods
29 | /// for the deferred return types. Extensions will only be generated for classes in this set.
30 | var deferredExtensionSourceClasses: Set<String> = []
| |- warning: var 'deferredExtensionSourceClasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'deferredExtensionSourceClasses' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'deferredExtensionSourceClasses' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// Optional lines to inject after the standard generated file preamble.
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:33:5: warning: var 'additionalPreamble' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | /// Optional lines to inject after the standard generated file preamble.
33 | var additionalPreamble: String = ""
| |- warning: var 'additionalPreamble' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'additionalPreamble' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'additionalPreamble' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// Keeps track of the classes we actually surface (after filtering).
/Users/admin/builder/spi-builder-workspace/Generator/Generator/GenerationSettings.swift:36:5: warning: var 'classesSelectedForGeneration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// Keeps track of the classes we actually surface (after filtering).
36 | var classesSelectedForGeneration: [String] = []
| |- warning: var 'classesSelectedForGeneration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'classesSelectedForGeneration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'classesSelectedForGeneration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// Utility that trims whitespace and removes the `.swift` suffix when present.
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:98:5: warning: var 'core_types' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
96 | }
97 |
98 | var core_types = [
| |- warning: var 'core_types' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'core_types' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'core_types' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 | "String",
100 | "Vector2",
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:243:5: warning: var 'mapStringToSwift' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
241 | }
242 |
243 | var mapStringToSwift = true
| |- warning: var 'mapStringToSwift' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'mapStringToSwift' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'mapStringToSwift' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |
245 | /// Given a type definition with its metadata, and the context where the type is being
[203/207] Compiling Generator Arguments.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Arguments.swift:201:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
189 | }
190 |
191 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
192 | var argref: String
193 | var optstorage: String
:
199 | optstorage = ".content"
200 | } else {
201 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
202 | optstorage = ".content"
203 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:202:5: note: var declared here
200 |
201 | let buildConfiguration: String = "float_64"
202 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
203 | for cs in jsonApi.builtinClassSizes {
204 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:841:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
839 | storedMembers = bc.members
840 | } else {
841 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
842 | storedMembers = memberOffsets.compactMap({ m in
843 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:210:5: note: var declared here
208 | }
209 | }
210 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
211 | for mo in jsonApi.builtinClassMemberOffsets {
212 | if mo.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:1181:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1179 | default:
1180 | // printer for class itself
1181 | let p: Printer = await PrinterFactory.shared.initPrinter(bc.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1182 |
1183 | mapStringToSwift = bc.name != "String"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
[204/207] Compiling Generator BuiltinGen.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Arguments.swift:201:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
189 | }
190 |
191 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
192 | var argref: String
193 | var optstorage: String
:
199 | optstorage = ".content"
200 | } else {
201 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
202 | optstorage = ".content"
203 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:202:5: note: var declared here
200 |
201 | let buildConfiguration: String = "float_64"
202 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
203 | for cs in jsonApi.builtinClassSizes {
204 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:841:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
839 | storedMembers = bc.members
840 | } else {
841 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
842 | storedMembers = memberOffsets.compactMap({ m in
843 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:210:5: note: var declared here
208 | }
209 | }
210 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
211 | for mo in jsonApi.builtinClassMemberOffsets {
212 | if mo.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:1181:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1179 | default:
1180 | // printer for class itself
1181 | let p: Printer = await PrinterFactory.shared.initPrinter(bc.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1182 |
1183 | mapStringToSwift = bc.name != "String"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
[207/214] Write EntryPointGenerator-tool-entitlement.plist
[208/215] Write sources
[211/215] Write swift-version-2F0A5646E1D333AE.txt
[213/217] Emitting module ArgumentParserToolInfo
[214/217] Compiling ArgumentParserToolInfo ToolInfo.swift
[215/263] Emitting module ArgumentParser
[216/267] Compiling ArgumentParser NonsenseFlagsValidator.swift
[217/267] Compiling ArgumentParser ParsableArgumentsValidation.swift
[218/267] Compiling ArgumentParser PositionalArgumentsValidator.swift
[219/267] Compiling ArgumentParser UniqueNamesValidator.swift
[220/267] Compiling ArgumentParser SequenceExtensions.swift
[221/267] Compiling ArgumentParser StringExtensions.swift
[222/267] Compiling ArgumentParser SwiftExtensions.swift
[223/267] Compiling ArgumentParser Tree.swift
[224/267] Compiling ArgumentParser CodingKeyValidator.swift
[225/267] Compiling ArgumentParser MessageInfo.swift
[226/267] Compiling ArgumentParser UsageGenerator.swift
[227/267] Compiling ArgumentParser CollectionExtensions.swift
[228/267] Compiling ArgumentParser Mutex.swift
[229/267] Compiling ArgumentParser Platform.swift
[230/267] Compiling ArgumentParser Flag.swift
[231/267] Compiling ArgumentParser NameSpecification.swift
[232/267] Compiling ArgumentParser Option.swift
[233/267] Compiling ArgumentParser OptionGroup.swift
[234/267] Compiling ArgumentParser AsyncParsableCommand.swift
[235/267] Compiling ArgumentParser BashCompletionsGenerator.swift
[236/267] Compiling ArgumentParser CompletionsGenerator.swift
[237/267] Compiling ArgumentParser FishCompletionsGenerator.swift
[238/267] Compiling ArgumentParser ZshCompletionsGenerator.swift
[239/267] Compiling ArgumentParser Argument.swift
[240/267] Compiling ArgumentParser CommandConfiguration.swift
[241/267] Compiling ArgumentParser CommandGroup.swift
[242/267] Compiling ArgumentParser EnumerableFlag.swift
[243/267] Compiling ArgumentParser ExpressibleByArgument.swift
[244/267] Compiling ArgumentParser ParsableArguments.swift
[245/267] Compiling ArgumentParser ParsableCommand.swift
[246/267] Compiling ArgumentParser ArgumentDecoder.swift
[247/267] Compiling ArgumentParser ArgumentDefinition.swift
[248/267] Compiling ArgumentParser ArgumentSet.swift
[249/267] Compiling ArgumentParser CommandParser.swift
[250/267] Compiling ArgumentParser InputKey.swift
[251/267] Compiling ArgumentParser InputOrigin.swift
[252/267] Compiling ArgumentParser Name.swift
[253/267] Compiling ArgumentParser Parsed.swift
[254/267] Compiling ArgumentParser ParsedValues.swift
[255/267] Compiling ArgumentParser ArgumentDiscussion.swift
[256/267] Compiling ArgumentParser ArgumentHelp.swift
[257/267] Compiling ArgumentParser ArgumentVisibility.swift
[258/267] Compiling ArgumentParser CompletionKind.swift
[259/267] Compiling ArgumentParser Errors.swift
[260/267] Compiling ArgumentParser ParserError.swift
[261/267] Compiling ArgumentParser SplitArguments.swift
[262/267] Compiling ArgumentParser DumpHelpGenerator.swift
[263/267] Compiling ArgumentParser HelpCommand.swift
[264/267] Compiling ArgumentParser HelpGenerator.swift
[265/270] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[266/270] Emitting module EntryPointGenerator
[267/270] Compiling EntryPointGenerator EntryPointGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:25:23: error: type of expression is ambiguous without a type annotation
23 |
24 | mutating func run() throws {
25 | let visitor = GodotMacroSearchingVisitor(viewMode: .all, logger: verbose ? logVerbose : nil)
| `- error: type of expression is ambiguous without a type annotation
26 |
27 | logVerbose("Scanning source files...")
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:52:70: error: cannot infer contextual base in reference to member 'utf8'
50 | logVerbose("Writing \(count) to '\(outputFile)'...")
51 | let outputURL = URL(fileURLWithPath: outputFile)
52 | try source.write(to: outputURL, atomically: true, encoding: .utf8)
| `- error: cannot infer contextual base in reference to member 'utf8'
53 | log("Generated swift_entry_point, registering \(count) classes, in \(outputURL.lastPathComponent).")
54 | }
[1/1] Compiling plugin EntryPointGeneratorPlugin
[2/2] Compiling plugin CodeGeneratorPlugin
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
[5/5] Compiling plugin GenerateManual
[6/6] Compiling plugin GenerateDoccReference
Building for debugging...
[6/89] Write Generator-entitlement.plist
[6/89] Write sources
[6/89] Write Generator-tool-entitlement.plist
[7/89] Write sources
[8/89] Write EntryPointGenerator-tool-entitlement.plist
[11/89] Write EntryPointGenerator-entitlement.plist
[11/89] Write sources
[12/89] Copying libgodot.dylib
[12/89] Write sources
[29/89] Copying extension_api.json
[30/89] Write sources
[31/89] Copying extension_api.json
[31/89] Write sources
[52/89] Compiling _SwiftSyntaxCShims dummy.c
[54/89] Write swift-version-2F0A5646E1D333AE.txt
[55/89] Compiling GDExtension GDExtensionSupport.c
[58/103] Compiling SwiftSyntax509 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[59/103] Emitting module SwiftSyntax509
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[60/103] Emitting module SwiftSyntax600
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[61/103] Compiling SwiftSyntax600 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[62/103] Compiling SwiftSyntax510 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[63/103] Emitting module SwiftSyntax510
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[64/106] Emitting module ExtensionApiJson
[65/106] Compiling ExtensionApiJson resource_bundle_accessor.swift
[66/106] Compiling ExtensionApiJson ExtensionApiJson.swift
[67/171] Emitting module ExtensionApiJson
[68/171] Compiling ExtensionApiJson ExtensionApiJson.swift
[69/171] Compiling ExtensionApiJson resource_bundle_accessor.swift
[70/171] Compiling ArgumentParserToolInfo ToolInfo.swift
[71/171] Emitting module ArgumentParserToolInfo
[72/229] Compiling SwiftOperators PrecedenceGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[73/230] Compiling EntryPointGenerator EntryPointGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:25:23: error: type of expression is ambiguous without a type annotation
23 |
24 | mutating func run() throws {
25 | let visitor = GodotMacroSearchingVisitor(viewMode: .all, logger: verbose ? logVerbose : nil)
| `- error: type of expression is ambiguous without a type annotation
26 |
27 | logVerbose("Scanning source files...")
/Users/admin/builder/spi-builder-workspace/Sources/EntryPointGenerator/EntryPointGenerator.swift:52:70: error: cannot infer contextual base in reference to member 'utf8'
50 | logVerbose("Writing \(count) to '\(outputFile)'...")
51 | let outputURL = URL(fileURLWithPath: outputFile)
52 | try source.write(to: outputURL, atomically: true, encoding: .utf8)
| `- error: cannot infer contextual base in reference to member 'utf8'
53 | log("Generated swift_entry_point, registering \(count) classes, in \(outputURL.lastPathComponent).")
54 | }
[74/230] Compiling SwiftOperators PrecedenceGraph.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[75/230] Compiling SwiftOperators OperatorTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[76/230] Compiling SwiftOperators OperatorError+Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[77/230] Compiling SwiftOperators OperatorError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[78/230] Compiling SwiftOperators OperatorTable+Defaults.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[79/230] Compiling SwiftOperators OperatorTable+Semantics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[80/230] Emitting module EntryPointGenerator
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[81/230] Compiling ExtensionApi ApiJsonModel+Extra.swift
[82/230] Emitting module ExtensionApi
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:567:7: warning: non-final class 'JSONCodingKey' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
565 | }
566 |
567 | class JSONCodingKey: CodingKey {
| `- warning: non-final class 'JSONCodingKey' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
568 | let key: String
569 |
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetching https://github.com/apple/swift-argument-parser from cache
Fetching https://github.com/swiftlang/swift-syntax from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.66s)
Fetched https://github.com/apple/swift-argument-parser from cache (1.75s)
Fetched https://github.com/swiftlang/swift-syntax from cache (1.78s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 600.0.1 (4.94s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (0.60s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.94s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.60s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.6.2 (0.50s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.6.2
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 600.0.1
Downloading binary artifact https://github.com/migueldeicaza/SwiftGodotKit/releases/download/4.3.5/libgodot.xcframework.zip
[16375/63767108] Downloading https://github.com/migueldeicaza/SwiftGodotKit/releases/download/4.3.5/libgodot.xcframework.zip
Downloaded https://github.com/migueldeicaza/SwiftGodotKit/releases/download/4.3.5/libgodot.xcframework.zip (3.81s)
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Found unhandled resource at /Users/admin/builder/spi-builder-workspace/Tests/SwiftGodotMacrosTests/Resources
[0/5] Compiling _SwiftSyntaxCShims dummy.c
[1/5] Write swift-version-2F0A5646E1D333AE.txt
[3/14] Compiling SwiftSyntax510 Empty.swift
[4/14] Compiling SwiftSyntax509 Empty.swift
[5/14] Emitting module SwiftSyntax510
[6/14] Emitting module SwiftSyntax509
[7/14] Compiling SwiftSyntax600 Empty.swift
[8/14] Emitting module SwiftSyntax600
[9/79] Compiling ExtensionApi ApiJsonModel+Extra.swift
[10/79] Emitting module ExtensionApi
[11/79] Compiling ExtensionApi ApiJsonModel.swift
[12/79] Compiling SwiftSyntax AbsolutePosition.swift
[13/79] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[14/79] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[15/79] Compiling SwiftSyntax Assert.swift
[16/79] Compiling SwiftSyntax BumpPtrAllocator.swift
[17/79] Compiling SwiftSyntax CommonAncestor.swift
[18/79] Compiling SwiftSyntax Convenience.swift
[19/79] Compiling SwiftSyntax CustomTraits.swift
[20/86] Compiling SwiftSyntax SyntaxProtocol.swift
[21/86] Compiling SwiftSyntax SyntaxText.swift
[22/86] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[23/86] Compiling SwiftSyntax TokenDiagnostic.swift
[24/86] Compiling SwiftSyntax TokenSequence.swift
[25/86] Compiling SwiftSyntax TokenSyntax.swift
[26/86] Compiling SwiftSyntax Trivia.swift
[27/86] Compiling SwiftSyntax SourceEdit.swift
[28/86] Compiling SwiftSyntax SourceLength.swift
[29/86] Compiling SwiftSyntax SourceLocation.swift
[30/86] Compiling SwiftSyntax SourcePresence.swift
[31/86] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[32/86] Compiling SwiftSyntax Syntax.swift
[33/86] Compiling SwiftSyntax SyntaxArena.swift
[34/86] Compiling SwiftSyntax Identifier.swift
[35/86] Compiling SwiftSyntax MemoryLayout.swift
[36/86] Compiling SwiftSyntax MissingNodeInitializers.swift
[37/86] Compiling SwiftSyntax RawSyntax.swift
[38/86] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[39/86] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[40/86] Compiling SwiftSyntax RawSyntaxTokenView.swift
[41/86] Emitting module SwiftSyntax
[42/86] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[43/86] Compiling SwiftSyntax SyntaxChildren.swift
[44/86] Compiling SwiftSyntax SyntaxCollection.swift
[45/86] Compiling SwiftSyntax SyntaxHashable.swift
[46/86] Compiling SwiftSyntax SyntaxIdentifier.swift
[47/86] Compiling SwiftSyntax SyntaxNodeFactory.swift
[48/86] Compiling SwiftSyntax SyntaxNodeStructure.swift
[49/86] Compiling SwiftSyntax SyntaxCollections.swift
[50/86] Compiling SwiftSyntax SyntaxEnum.swift
[51/86] Compiling SwiftSyntax SyntaxKind.swift
[52/86] Compiling SwiftSyntax SyntaxRewriter.swift
[53/86] Compiling SwiftSyntax SyntaxTraits.swift
[54/86] Compiling SwiftSyntax SyntaxVisitor.swift
[55/86] Compiling SwiftSyntax TokenKind.swift
[56/86] Compiling SwiftSyntax SyntaxNodesD.swift
[57/86] Compiling SwiftSyntax SyntaxNodesEF.swift
[58/86] Compiling SwiftSyntax SyntaxNodesGHI.swift
[59/86] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[60/86] Compiling SwiftSyntax SyntaxNodesOP.swift
[61/86] Compiling SwiftSyntax SyntaxNodesQRS.swift
[62/86] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[63/86] Compiling SwiftSyntax Tokens.swift
[64/86] Compiling SwiftSyntax TriviaPieces.swift
[65/86] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[66/86] Compiling SwiftSyntax RawSyntaxNodesC.swift
[67/86] Compiling SwiftSyntax RawSyntaxNodesD.swift
[68/86] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[69/86] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[70/86] Compiling SwiftSyntax Utils.swift
[71/86] Compiling SwiftSyntax ChildNameForKeyPath.swift
[72/86] Compiling SwiftSyntax Keyword.swift
[73/86] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[74/86] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[75/86] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[76/86] Compiling SwiftSyntax SyntaxBaseNodes.swift
[77/86] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[78/86] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[79/86] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[80/86] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[81/86] Compiling SwiftSyntax RawSyntaxValidation.swift
[82/86] Compiling SwiftSyntax SyntaxNodesAB.swift
[83/86] Compiling SwiftSyntax SyntaxNodesC.swift
[84/144] Compiling SwiftDiagnostics Message.swift
[85/145] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[86/145] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[87/145] Emitting module SwiftDiagnostics
[88/145] Compiling SwiftDiagnostics Diagnostic.swift
[89/145] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[90/145] Compiling SwiftDiagnostics Note.swift
[91/145] Compiling SwiftBasicFormat Syntax+Extensions.swift
[92/145] Compiling SwiftDiagnostics FixIt.swift
[93/145] Compiling SwiftBasicFormat InferIndentation.swift
[94/145] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[95/145] Compiling SwiftDiagnostics Convenience.swift
[96/145] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[97/145] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[98/145] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[99/145] Emitting module SwiftBasicFormat
[100/145] Compiling SwiftBasicFormat BasicFormat.swift
[101/145] Compiling SwiftParser StringLiterals.swift
[102/145] Compiling SwiftParser SwiftParserCompatibility.swift
[103/145] Compiling SwiftParser SwiftVersion.swift
[104/145] Compiling SwiftParser SyntaxUtils.swift
[105/149] Compiling SwiftParser TokenConsumer.swift
[106/149] Compiling SwiftParser TokenPrecedence.swift
[107/149] Compiling SwiftParser TokenSpec.swift
[108/149] Compiling SwiftParser TokenSpecSet.swift
[109/149] Compiling SwiftParser UnicodeScalarExtensions.swift
[110/149] Compiling SwiftParser Lookahead.swift
[111/149] Compiling SwiftParser LoopProgressCondition.swift
[112/149] Compiling SwiftParser Modifiers.swift
[113/149] Compiling SwiftParser Names.swift
[114/149] Compiling SwiftParser TopLevel.swift
[115/149] Compiling SwiftParser TriviaParser.swift
[116/149] Compiling SwiftParser Types.swift
[117/149] Compiling SwiftParser ExperimentalFeatures.swift
[118/149] Compiling SwiftParser Nominals.swift
[119/149] Compiling SwiftParser Parameters.swift
[120/149] Compiling SwiftParser ParseSourceFile.swift
[121/149] Compiling SwiftParser Parser.swift
[122/149] Compiling SwiftParser Patterns.swift
[123/149] Compiling SwiftParser Recovery.swift
[124/149] Compiling SwiftParser Specifiers.swift
[125/149] Compiling SwiftParser Statements.swift
[126/149] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[127/149] Emitting module SwiftParser
[128/149] Compiling SwiftParser Directives.swift
[129/149] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[130/149] Compiling SwiftParser Expressions.swift
[131/149] Compiling SwiftParser IncrementalParseTransition.swift
[132/149] Compiling SwiftParser IsValidIdentifier.swift
[133/149] Compiling SwiftParser Cursor.swift
[134/149] Compiling SwiftParser Lexeme.swift
[135/149] Compiling SwiftParser LexemeSequence.swift
[136/149] Compiling SwiftParser Lexer.swift
[137/149] Compiling SwiftParser RegexLiteralLexer.swift
[138/149] Compiling SwiftParser Attributes.swift
[139/149] Compiling SwiftParser Availability.swift
[140/149] Compiling SwiftParser CharacterInfo.swift
[141/149] Compiling SwiftParser CollectionNodes+Parsable.swift
[142/149] Compiling SwiftParser Declarations.swift
[143/149] Compiling SwiftParser IsLexerClassified.swift
[144/149] Compiling SwiftParser LayoutNodes+Parsable.swift
[145/149] Compiling SwiftParser Parser+TokenSpecSet.swift
[146/149] Compiling SwiftParser TokenSpecStaticMembers.swift
[147/162] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[148/163] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[149/163] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[150/163] Compiling SwiftParserDiagnostics Utils.swift
[151/163] Compiling SwiftParserDiagnostics PresenceUtils.swift
[152/163] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[153/163] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[154/163] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[155/163] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[156/163] Emitting module SwiftParserDiagnostics
[157/163] Compiling SwiftParserDiagnostics MissingNodesError.swift
[158/163] Compiling SwiftParserDiagnostics MissingTokenError.swift
[159/163] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[160/163] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[161/178] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[162/178] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[163/178] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[164/178] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[165/178] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[166/178] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[167/178] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[168/178] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[169/179] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[170/179] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[171/179] Compiling SwiftSyntaxBuilder Indenter.swift
[172/179] Compiling SwiftSyntaxBuilder ListBuilder.swift
[173/179] Emitting module SwiftSyntaxBuilder
[174/179] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[175/179] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[176/179] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[177/194] Compiling Generator TypeHelpers.swift
[178/194] Compiling Generator UtilityGen.swift
[179/195] Compiling Generator UnsafePointerHelpers.swift
[180/195] Compiling Generator NativeStructures.swift
[181/195] Compiling Generator Printer.swift
[182/195] Compiling Generator GenerationSettings.swift
[183/195] Compiling Generator MethodGen.swift
[184/195] Compiling Generator StringOperations.swift
[185/195] Compiling Generator main.swift
[186/195] Compiling Generator ClassGen.swift
[187/195] Compiling Generator Data.swift
[188/195] Compiling Generator DocModel.swift
[189/195] Compiling Generator Enums.swift
[190/195] Compiling Generator Arguments.swift
[191/195] Compiling Generator BuiltinGen.swift
[192/195] Emitting module Generator
[192/195] Write Objects.LinkFileList
[193/195] Linking Generator-tool
[194/195] Applying Generator-tool
[195/199] Write swift-version-2F0A5646E1D333AE.txt
[197/201] Emitting module ArgumentParserToolInfo
[198/201] Compiling ArgumentParserToolInfo ToolInfo.swift
[199/247] Compiling ArgumentParser ArgumentDiscussion.swift
[200/247] Compiling ArgumentParser ArgumentHelp.swift
[201/247] Compiling ArgumentParser ArgumentVisibility.swift
[202/247] Compiling ArgumentParser CompletionKind.swift
[203/247] Compiling ArgumentParser Errors.swift
[204/251] Emitting module ArgumentParser
[205/251] Compiling ArgumentParser InputKey.swift
[206/251] Compiling ArgumentParser InputOrigin.swift
[207/251] Compiling ArgumentParser Name.swift
[208/251] Compiling ArgumentParser Parsed.swift
[209/251] Compiling ArgumentParser ParsedValues.swift
[210/251] Compiling ArgumentParser SequenceExtensions.swift
[211/251] Compiling ArgumentParser StringExtensions.swift
[212/251] Compiling ArgumentParser SwiftExtensions.swift
[213/251] Compiling ArgumentParser Tree.swift
[214/251] Compiling ArgumentParser CodingKeyValidator.swift
[215/251] Compiling ArgumentParser MessageInfo.swift
[216/251] Compiling ArgumentParser UsageGenerator.swift
[217/251] Compiling ArgumentParser CollectionExtensions.swift
[218/251] Compiling ArgumentParser Mutex.swift
[219/251] Compiling ArgumentParser Platform.swift
[220/251] Compiling ArgumentParser NonsenseFlagsValidator.swift
[221/251] Compiling ArgumentParser ParsableArgumentsValidation.swift
[222/251] Compiling ArgumentParser PositionalArgumentsValidator.swift
[223/251] Compiling ArgumentParser UniqueNamesValidator.swift
[224/251] Compiling ArgumentParser CommandConfiguration.swift
[225/251] Compiling ArgumentParser CommandGroup.swift
[226/251] Compiling ArgumentParser EnumerableFlag.swift
[227/251] Compiling ArgumentParser ExpressibleByArgument.swift
[228/251] Compiling ArgumentParser ParsableArguments.swift
[229/251] Compiling ArgumentParser BashCompletionsGenerator.swift
[230/251] Compiling ArgumentParser CompletionsGenerator.swift
[231/251] Compiling ArgumentParser FishCompletionsGenerator.swift
[232/251] Compiling ArgumentParser ZshCompletionsGenerator.swift
[233/251] Compiling ArgumentParser Argument.swift
[234/251] Compiling ArgumentParser ParserError.swift
[235/251] Compiling ArgumentParser SplitArguments.swift
[236/251] Compiling ArgumentParser DumpHelpGenerator.swift
[237/251] Compiling ArgumentParser HelpCommand.swift
[238/251] Compiling ArgumentParser HelpGenerator.swift
[239/251] Compiling ArgumentParser ParsableCommand.swift
[240/251] Compiling ArgumentParser ArgumentDecoder.swift
[241/251] Compiling ArgumentParser ArgumentDefinition.swift
[242/251] Compiling ArgumentParser ArgumentSet.swift
[243/251] Compiling ArgumentParser CommandParser.swift
[244/251] Compiling ArgumentParser Flag.swift
[245/251] Compiling ArgumentParser NameSpecification.swift
[246/251] Compiling ArgumentParser Option.swift
[247/251] Compiling ArgumentParser OptionGroup.swift
[248/251] Compiling ArgumentParser AsyncParsableCommand.swift
[249/254] Compiling EntryPointGenerator EntryPointGenerator.swift
[250/254] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[251/254] Emitting module EntryPointGenerator
[251/254] Write Objects.LinkFileList
[252/254] Linking EntryPointGenerator-tool
[253/254] Applying EntryPointGenerator-tool
[0/1] Planning build
[1/1] Compiling plugin EntryPointGeneratorPlugin
[2/2] Compiling plugin CodeGeneratorPlugin
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
[5/5] Compiling plugin GenerateManual
[6/6] Compiling plugin GenerateDoccReference
Building for debugging...
[6/40] Compiling _SwiftSyntaxCShims dummy.c
[7/40] Write swift-version-2F0A5646E1D333AE.txt
[9/55] Emitting module SwiftSyntax509
[10/55] Compiling SwiftSyntax509 Empty.swift
[11/55] Compiling SwiftSyntax510 Empty.swift
[12/55] Emitting module SwiftSyntax510
[13/55] Compiling SwiftSyntax600 Empty.swift
[14/55] Emitting module SwiftSyntax600
[15/57] Compiling ExtensionApiJson resource_bundle_accessor.swift
[16/57] Emitting module ExtensionApiJson
[17/57] Compiling ExtensionApiJson ExtensionApiJson.swift
[18/57] Emitting module ExtensionApiJson
[19/57] Compiling ExtensionApiJson ExtensionApiJson.swift
[20/57] Compiling ExtensionApiJson resource_bundle_accessor.swift
[21/122] Emitting module ArgumentParserToolInfo
[22/122] Compiling ArgumentParserToolInfo ToolInfo.swift
[23/122] Compiling SwiftSyntax AbsolutePosition.swift
[24/122] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[25/122] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[26/122] Compiling SwiftSyntax Assert.swift
[27/122] Compiling SwiftSyntax BumpPtrAllocator.swift
[28/122] Compiling SwiftSyntax CommonAncestor.swift
[29/122] Compiling SwiftSyntax Convenience.swift
[30/122] Compiling SwiftSyntax CustomTraits.swift
[30/185] Write Objects.LinkFileList
[32/185] Compiling SwiftOperators OperatorTable+Defaults.swift
[33/185] Compiling SwiftOperators PrecedenceGroup.swift
[34/185] Compiling SwiftOperators OperatorTable.swift
[35/186] Compiling SwiftOperators SyntaxSynthesis.swift
[36/186] Compiling SwiftOperators PrecedenceGraph.swift
[37/186] Compiling SwiftOperators OperatorError.swift
[38/186] Compiling SwiftOperators Operator.swift
[39/186] Compiling SwiftOperators OperatorError+Diagnostics.swift
[40/186] Compiling SwiftOperators OperatorTable+Folding.swift
[41/186] Emitting module SwiftOperators
[42/186] Compiling SwiftOperators OperatorTable+Semantics.swift
[43/186] Compiling ExtensionApi ApiJsonModel+Extra.swift
[44/186] Compiling ExtensionApi ApiJsonModel.swift
[45/186] Emitting module ExtensionApi
[46/204] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[47/204] Compiling SwiftSyntaxMacros Macro+Format.swift
[48/204] Compiling SwiftSyntaxMacros Macro.swift
[49/204] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[50/204] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[51/204] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[52/204] Compiling SwiftSyntaxMacros MemberMacro.swift
[52/204] Write Objects.LinkFileList
[54/204] Compiling SwiftSyntaxMacros PreambleMacro.swift
[60/205] Compiling SwiftSyntaxMacros PeerMacro.swift
[61/205] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[62/205] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[65/205] Compiling SwiftSyntaxMacros AttachedMacro.swift
[66/205] Compiling SwiftSyntaxMacros BodyMacro.swift
[67/205] Emitting module SwiftSyntaxMacros
[68/205] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[69/205] Compiling SwiftSyntaxMacros AccessorMacro.swift
[70/205] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[71/205] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[72/205] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[77/219] Linking EntryPointGenerator-tool
[79/219] Compiling ArgumentParser ArgumentDiscussion.swift
[80/219] Compiling ArgumentParser ArgumentHelp.swift
[81/219] Compiling ArgumentParser ArgumentVisibility.swift
[82/219] Compiling ArgumentParser CompletionKind.swift
[83/219] Compiling ArgumentParser Errors.swift
[84/219] Compiling ArgumentParser MessageInfo.swift
[85/219] Compiling ArgumentParser UsageGenerator.swift
[86/219] Compiling ArgumentParser CollectionExtensions.swift
[87/219] Compiling ArgumentParser Mutex.swift
[88/219] Compiling ArgumentParser Platform.swift
[90/219] Compiling ArgumentParser InputOrigin.swift
[91/219] Compiling ArgumentParser Name.swift
[92/219] Compiling ArgumentParser Parsed.swift
[93/219] Compiling ArgumentParser ParsedValues.swift
[94/219] Compiling ArgumentParser SequenceExtensions.swift
[95/219] Compiling ArgumentParser StringExtensions.swift
[96/219] Compiling ArgumentParser SwiftExtensions.swift
[97/219] Compiling ArgumentParser Tree.swift
[98/219] Compiling ArgumentParser CodingKeyValidator.swift
[99/219] Compiling ArgumentParser CommandConfiguration.swift
[100/219] Compiling ArgumentParser CommandGroup.swift
[101/219] Compiling ArgumentParser EnumerableFlag.swift
[102/219] Compiling ArgumentParser ExpressibleByArgument.swift
[103/219] Compiling ArgumentParser ParsableArguments.swift
[104/219] Compiling ArgumentParser ParserError.swift
[105/219] Compiling ArgumentParser SplitArguments.swift
[106/219] Compiling ArgumentParser DumpHelpGenerator.swift
[107/219] Compiling ArgumentParser HelpCommand.swift
[108/219] Compiling ArgumentParser HelpGenerator.swift
[109/219] Emitting module ArgumentParser
[109/219] Applying EntryPointGenerator-tool
[111/219] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[112/219] Compiling ArgumentParser NonsenseFlagsValidator.swift
[113/219] Compiling ArgumentParser ParsableArgumentsValidation.swift
[114/219] Compiling ArgumentParser PositionalArgumentsValidator.swift
[115/219] Compiling ArgumentParser UniqueNamesValidator.swift
Generated swift_entry_point, registering 3 classes, in EntryPoint.generated.swift.
[125/219] Generating Godot entry point
[126/219] Write sources
[128/219] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[129/219] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[130/219] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[131/219] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[132/219] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[133/219] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[134/219] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[135/219] Emitting module SwiftSyntaxMacroExpansion
[136/219] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[136/219] Linking Generator-tool
[137/219] Applying Generator-tool
[139/231] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[140/231] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[141/231] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[142/231] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[143/232] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[144/232] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[145/232] Emitting module SwiftCompilerPluginMessageHandling
[146/232] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[147/232] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[148/232] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[149/232] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[150/232] Compiling SwiftCompilerPluginMessageHandling JSON.swift
Looking for Image but did not exist in /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Generator-tool /Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/extension_api.json /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/GeneratedSources/SwiftGodotRuntime --class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-classes.txt --available-class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-available-classes.txt --builtin-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-builtins.txt
Looking for Node but did not exist in /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Generator-tool /Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/extension_api.json /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/GeneratedSources/SwiftGodotRuntime --class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-classes.txt --available-class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-available-classes.txt --builtin-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/tools/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-builtins.txt
[150/232] Generating SwiftGodot API for SwiftGodotRuntime
[151/232] Write sources
Looking for Image but did not exist in /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Generator-tool /Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/extension_api.json /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/GeneratedSources/SwiftGodotRuntime --class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-classes.txt --available-class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-available-classes.txt --builtin-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-builtins.txt
Looking for Node but did not exist in /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Generator-tool /Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/extension_api.json /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/GeneratedSources/SwiftGodotRuntime --class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-classes.txt --available-class-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-available-classes.txt --builtin-filter /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftGodotRuntime/destination/CodeGeneratorPlugin/Configuration/SwiftGodotRuntime-builtins.txt
[152/232] Generating SwiftGodot API for SwiftGodotRuntime
[153/232] Write sources
[155/232] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[156/234] Emitting module SwiftCompilerPlugin
[157/234] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[157/234] Generating SwiftGodot API for SwiftGodot
[159/234] Write sources
[162/249] Compiling SwiftGodotMacroLibrary SwiftSyntaxExtensions.swift
[163/250] Compiling SwiftGodotMacroLibrary SignalAttachmentMacro.swift
[164/250] Compiling SwiftGodotMacroLibrary SignalMacro.swift
[165/250] Compiling SwiftGodotMacroLibrary CodePrinter.swift
[166/250] Compiling SwiftGodotMacroLibrary InitSwiftExtensionMacro.swift
[167/250] Emitting module SwiftGodotMacroLibrary
[168/250] Compiling SwiftGodotMacroLibrary TextureLiteralMacro.swift
[169/250] Emitting module SwiftSyntax
[170/250] Compiling SwiftGodotMacroLibrary SceneTreeMacro.swift
[171/250] Compiling SwiftGodotMacroLibrary NativeHandleDiscardingMacro.swift
[172/250] Compiling SwiftGodotMacroLibrary PickerNameProviderMacro.swift
[173/250] Compiling SwiftGodotMacroLibrary MacroGodot.swift
[174/250] Compiling SwiftGodotMacroLibrary MacroSharedApi.swift
[175/250] Compiling SwiftGodotMacroLibrary MacroCallable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGodotMacroLibrary/MacroCallable.swift:112:9: warning: will never be executed
110 | }
111 |
112 | if funcDecl.hasClassOrStaticModifier {
| `- warning: will never be executed
113 | }
114 | }
[176/250] Compiling SwiftGodotMacroLibrary MacroExport.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGodotMacroLibrary/MacroCallable.swift:112:9: warning: will never be executed
110 | }
111 |
112 | if funcDecl.hasClassOrStaticModifier {
| `- warning: will never be executed
113 | }
114 | }
[177/250] Compiling SwiftGodotMacroLibrary MacroExportGroup.swift
[178/250] Compiling SwiftGodotMacroLibrary MacroExportSubgroup.swift
[178/250] Write Objects.LinkFileList
[179/250] Linking SwiftGodotMacroLibrary-tool
[181/404] Compiling SwiftGodotRuntime Snapped.swift
[182/404] Compiling SwiftGodotRuntime SwiftGodot.swift
[183/404] Compiling SwiftGodotRuntime Wrapped.swift
[184/404] Compiling SwiftGodotRuntime EntryPoint.swift
[185/404] Compiling SwiftGodotRuntime Export.swift
[186/404] Compiling SwiftGodotRuntime Arithmetic.swift
[187/404] Compiling SwiftGodotRuntime CallableExtensions.swift
[188/404] Compiling SwiftGodotRuntime NodePath.swift
[189/404] Compiling SwiftGodotRuntime PackedByteArray.swift
[190/404] Compiling SwiftGodotRuntime PackedColorArray.swift
[191/404] Compiling SwiftGodotRuntime PackedFloat32Array.swift
[192/404] Compiling SwiftGodotRuntime PackedFloat64Array.swift
[193/404] Compiling SwiftGodotRuntime PackedInt32Array.swift
[194/404] Compiling SwiftGodotRuntime PackedInt64Array.swift
[195/404] Compiling SwiftGodotRuntime PackedStringArray.swift
[196/404] Compiling SwiftGodotRuntime MacroExportInvokeSetter.swift
[197/412] Compiling SwiftGodotRuntime Arguments.swift
[198/412] Compiling SwiftGodotRuntime BuiltinConvertible.swift
[199/412] Compiling SwiftGodotRuntime ClassServices.swift
[200/412] Compiling SwiftGodotRuntime FastFunctionBridging.swift
[201/412] Compiling SwiftGodotRuntime FastStringName.swift
[202/412] Compiling SwiftGodotRuntime InitializationLevel.swift
[203/412] Compiling SwiftGodotRuntime InspectableProperty.swift
[204/412] Compiling SwiftGodotRuntime NIOLock.swift
[205/412] Compiling SwiftGodotRuntime ObjectCollection.swift
[206/412] Compiling SwiftGodotRuntime Wrapped.swift
[207/412] Compiling SwiftGodotRuntime EntryPoint.swift
[208/412] Compiling SwiftGodotRuntime Export.swift
[209/412] Compiling SwiftGodotRuntime Arithmetic.swift
[210/412] Compiling SwiftGodotRuntime CallableExtensions.swift
[211/412] Compiling SwiftGodotRuntime ClassInfoExtensions.swift
[212/412] Compiling SwiftGodotRuntime ColorExtensions.swift
[213/412] Compiling SwiftGodotRuntime Compat.swift
[214/412] Compiling SwiftGodotRuntime GDUtilityFunctions.swift
[227/420] Compiling SwiftGodotRuntime Packed.swift
[228/420] Compiling SwiftGodotRuntime SignalProxy.swift
[229/420] Compiling SwiftGodotRuntime SignalRegistration.swift
[230/420] Compiling SwiftGodotRuntime SignalWithArguments.swift
[231/420] Compiling SwiftGodotRuntime StringExtensions.swift
[232/420] Compiling SwiftGodotRuntime TypedArray.swift
[233/420] Compiling SwiftGodotRuntime TypedDictionary.swift
[234/420] Compiling SwiftGodotRuntime VariantCollection.swift
[235/420] Compiling SwiftGodotRuntime VariantConvertible.swift
[236/420] Compiling SwiftGodotRuntime MacroExportInvokeSetter.swift
[237/420] Compiling SwiftGodotRuntime MacroGodotArgumentPropInfo.swift
[246/420] Compiling SwiftGodotRuntime Variant.swift
[247/420] Compiling SwiftGodotRuntime AABB.swift
[248/420] Compiling SwiftGodotRuntime Array.swift
[249/420] Compiling SwiftGodotRuntime Basis.swift
[250/420] Compiling SwiftGodotRuntime Callable.swift
[251/420] Compiling SwiftGodotRuntime Color.swift
[252/420] Compiling SwiftGodotRuntime core-defs.swift
[253/420] Compiling SwiftGodotRuntime Dictionary.swift
[254/420] Emitting module SwiftGodotRuntime
[261/420] Compiling SwiftGodotRuntime ClassInfoExtensions.swift
[262/420] Compiling SwiftGodotRuntime ColorExtensions.swift
[263/420] Compiling SwiftGodotRuntime Compat.swift
[264/420] Compiling SwiftGodotRuntime GDUtilityFunctions.swift
[266/420] Compiling SwiftGodotRuntime MacroGodotArgumentPropInfo.swift
[267/420] Compiling SwiftGodotRuntime MacroGodotPropertyPropInfo.swift
[268/420] Compiling SwiftGodotRuntime MacroGodotReturnValuePropInfo.swift
[269/420] Compiling SwiftGodotRuntime LinearInterpolation.swift
[270/420] Compiling SwiftGodotRuntime RotationConversion.swift
[297/420] Compiling SwiftGodotRuntime Vector2i.swift
[298/420] Compiling SwiftGodotRuntime Vector3.swift
[299/420] Compiling SwiftGodotRuntime Vector3i.swift
[300/420] Compiling SwiftGodotRuntime Vector4.swift
[301/420] Compiling SwiftGodotRuntime Vector4i.swift
[302/420] Compiling SwiftGodotRuntime ClassDB.swift
[303/420] Compiling SwiftGodotRuntime Object.swift
[304/420] Compiling SwiftGodotRuntime RefCounted.swift
[307/420] Compiling SwiftGodotRuntime MacroGodotPropertyPropInfo.swift
[308/420] Compiling SwiftGodotRuntime MacroGodotReturnValuePropInfo.swift
[309/420] Compiling SwiftGodotRuntime LinearInterpolation.swift
[310/420] Compiling SwiftGodotRuntime RotationConversion.swift
[311/420] Compiling SwiftGodotRuntime Snapped.swift
[312/420] Compiling SwiftGodotRuntime SwiftGodot.swift
[313/420] Compiling SwiftGodotRuntime RID.swift
[314/420] Compiling SwiftGodotRuntime Signal.swift
[315/420] Compiling SwiftGodotRuntime String.swift
[316/420] Compiling SwiftGodotRuntime StringName.swift
[317/420] Compiling SwiftGodotRuntime Transform2D.swift
[318/420] Compiling SwiftGodotRuntime Transform3D.swift
[319/420] Compiling SwiftGodotRuntime utility.swift
[320/420] Compiling SwiftGodotRuntime Vector2.swift
[363/420] Write Objects.LinkFileList
[372/605] Linking libSwiftGodotRuntime.dylib
[374/872] Compiling SwiftGodot Mesh.swift
[375/872] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[376/872] Compiling SwiftGodot MeshDataTool.swift
[377/872] Compiling SwiftGodot MeshLibrary.swift
[378/872] Compiling SwiftGodot MeshTexture.swift
[379/872] Compiling SwiftGodot MethodTweener.swift
[380/872] Compiling SwiftGodot MissingNode.swift
[381/872] Compiling SwiftGodot MultiplayerSpawner.swift
[382/872] Compiling SwiftGodot MultiplayerSynchronizer.swift
[383/872] Compiling SwiftGodot Mutex.swift
[384/872] Compiling SwiftGodot NativeMenu.swift
[385/872] Compiling SwiftGodot NavigationMesh.swift
[386/872] Compiling SwiftGodot NavigationMeshGenerator.swift
[387/872] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[388/872] Compiling SwiftGodot MissingResource.swift
[389/872] Compiling SwiftGodot MovieWriter.swift
[390/872] Compiling SwiftGodot MultiMesh.swift
[391/872] Compiling SwiftGodot MultiplayerAPI.swift
[392/872] Compiling SwiftGodot MultiplayerAPIExtension.swift
[393/872] Compiling SwiftGodot MultiplayerPeer.swift
[394/872] Compiling SwiftGodot MultiplayerPeerExtension.swift
[395/872] Compiling SwiftGodot InputEventKey.swift
[396/872] Compiling SwiftGodot InputEventMIDI.swift
[397/872] Compiling SwiftGodot InputEventMagnifyGesture.swift
[398/872] Compiling SwiftGodot InputEventMouse.swift
[399/872] Compiling SwiftGodot InputEventMouseButton.swift
[400/872] Compiling SwiftGodot InputEventMouseMotion.swift
[401/872] Compiling SwiftGodot InputEventPanGesture.swift
[402/872] Compiling SwiftGodot JNISingleton.swift
[403/872] Compiling SwiftGodot JSON.swift
[404/872] Compiling SwiftGodot JSONRPC.swift
[405/872] Compiling SwiftGodot JavaClass.swift
[406/872] Compiling SwiftGodot JavaClassWrapper.swift
[407/872] Compiling SwiftGodot JavaObject.swift
[408/872] Compiling SwiftGodot JavaScriptBridge.swift
[409/930] Compiling SwiftDiagnostics Message.swift
[410/930] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[411/931] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[412/931] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[413/931] Compiling SwiftBasicFormat Syntax+Extensions.swift
[414/931] Compiling SwiftDiagnostics FixIt.swift
[415/931] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[416/931] Compiling SwiftDiagnostics Diagnostic.swift
[417/931] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[418/931] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[419/931] Compiling SwiftDiagnostics Convenience.swift
[420/931] Emitting module SwiftDiagnostics
[421/931] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[422/931] Compiling SwiftDiagnostics Note.swift
[423/931] Emitting module SwiftBasicFormat
[424/931] Compiling SwiftBasicFormat BasicFormat.swift
[425/931] Compiling SwiftBasicFormat InferIndentation.swift
[426/931] Compiling SwiftParser StringLiterals.swift
[427/931] Compiling SwiftParser SwiftParserCompatibility.swift
[428/931] Compiling SwiftParser SwiftVersion.swift
[429/931] Compiling SwiftParser SyntaxUtils.swift
[430/935] Compiling SwiftParser TriviaParser.swift
[431/935] Compiling SwiftParser Types.swift
[432/935] Compiling SwiftParser ExperimentalFeatures.swift
[433/935] Compiling SwiftParser Directives.swift
[434/935] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[435/935] Compiling SwiftParser Expressions.swift
[436/935] Compiling SwiftParser IncrementalParseTransition.swift
[437/935] Compiling SwiftParser IsValidIdentifier.swift
[438/935] Compiling SwiftParser Recovery.swift
[439/935] Compiling SwiftParser Specifiers.swift
[440/935] Compiling SwiftParser Statements.swift
[441/935] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[446/935] Compiling SwiftParser IsLexerClassified.swift
[447/935] Compiling SwiftParser LayoutNodes+Parsable.swift
[448/935] Compiling SwiftParser Parser+TokenSpecSet.swift
[449/935] Compiling SwiftParser TokenSpecStaticMembers.swift
[455/960] Compiling SwiftParser TokenConsumer.swift
[456/960] Compiling SwiftParser TokenPrecedence.swift
[457/960] Compiling SwiftParser TokenSpec.swift
[458/960] Compiling SwiftParser TokenSpecSet.swift
[459/960] Emitting module SwiftParser
[464/960] Compiling SwiftParser TopLevel.swift
[473/960] Compiling SwiftParser UnicodeScalarExtensions.swift
[474/960] Compiling SwiftParser Lookahead.swift
[475/960] Compiling SwiftParser LoopProgressCondition.swift
[476/960] Compiling SwiftParser Modifiers.swift
[477/960] Compiling SwiftParser Names.swift
[478/960] Compiling SwiftParser Nominals.swift
[479/960] Compiling SwiftParser Parameters.swift
[480/960] Compiling SwiftParser ParseSourceFile.swift
[481/960] Compiling SwiftParser Parser.swift
[482/960] Compiling SwiftParser Patterns.swift
[483/960] Compiling SwiftParser Attributes.swift
[484/960] Compiling SwiftParser Availability.swift
[485/960] Compiling SwiftParser CharacterInfo.swift
[486/960] Compiling SwiftParser CollectionNodes+Parsable.swift
[487/960] Compiling SwiftParser Declarations.swift
[488/960] Compiling SwiftParser Cursor.swift
[489/960] Compiling SwiftParser Lexeme.swift
[490/960] Compiling SwiftParser LexemeSequence.swift
[491/960] Compiling SwiftParser Lexer.swift
[492/960] Compiling SwiftParser RegexLiteralLexer.swift
[493/960] Compiling SwiftGodot AnimationNodeStateMachinePlayback.swift
[494/960] Compiling SwiftGodot AnimationNodeStateMachineTransition.swift
[495/960] Compiling SwiftGodot AnimationNodeSub2.swift
[496/960] Compiling SwiftGodot AnimationNodeSync.swift
[497/960] Compiling SwiftGodot AnimationNodeTimeScale.swift
[498/960] Compiling SwiftGodot AnimationNodeTimeSeek.swift
[499/960] Compiling SwiftGodot AnimationNodeTransition.swift
[500/960] Compiling SwiftGodot AnimationPlayer.swift
[501/960] Compiling SwiftGodot AnimationRootNode.swift
[502/960] Compiling SwiftGodot AnimationTree.swift
[503/960] Compiling SwiftGodot ArrayMesh.swift
[504/960] Compiling SwiftGodot AtlasTexture.swift
[505/960] Compiling SwiftGodot AudioBusLayout.swift
[506/960] Compiling SwiftGodot AudioEffect.swift
[507/960] Compiling SwiftGodot AudioEffectAmplify.swift
[508/960] Compiling SwiftGodot AudioEffectBandLimitFilter.swift
[509/960] Compiling SwiftGodot AudioEffectBandPassFilter.swift
[510/960] Compiling SwiftGodot AudioEffectCapture.swift
[511/960] Compiling SwiftGodot AudioEffectChorus.swift
[512/960] Compiling SwiftGodot AudioEffectCompressor.swift
[513/960] Compiling SwiftGodot AudioEffectDelay.swift
[514/960] Compiling SwiftGodot AudioEffectDistortion.swift
[515/960] Compiling SwiftGodot AudioEffectEQ.swift
[516/960] Compiling SwiftGodot AudioEffectEQ10.swift
[517/960] Compiling SwiftGodot AudioEffectEQ21.swift
[522/1001] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[523/1001] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[524/1002] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[525/1002] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[526/1002] Compiling EntryPointGenerator EntryPointGenerator.swift
[527/1002] Emitting module EntryPointGenerator
[527/1002] Write Objects.LinkFileList
[529/1002] Compiling SwiftParserDiagnostics Utils.swift
[530/1002] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[531/1002] Compiling SwiftGodot AudioStreamGeneratorPlayback.swift
[532/1002] Compiling SwiftGodot AudioStreamInteractive.swift
[533/1002] Compiling SwiftGodot AudioStreamMP3.swift
[534/1002] Compiling SwiftGodot AudioStreamMicrophone.swift
[535/1002] Compiling SwiftGodot AudioStreamOggVorbis.swift
[536/1002] Compiling SwiftGodot AudioStreamPlayback.swift
[537/1002] Compiling SwiftGodot AudioStreamPlaybackInteractive.swift
[538/1002] Compiling SwiftGodot AudioStreamPlaybackOggVorbis.swift
[539/1002] Compiling SwiftGodot AudioStreamPlaybackPlaylist.swift
[540/1002] Compiling SwiftGodot AudioStreamPlaybackPolyphonic.swift
[541/1002] Compiling SwiftGodot AudioStreamPlaybackResampled.swift
[542/1002] Compiling SwiftGodot AudioStreamPlaybackSynchronized.swift
[543/1002] Compiling SwiftGodot AudioStreamPlayer.swift
[544/1002] Compiling SwiftGodot AudioStreamPlaylist.swift
[545/1002] Compiling SwiftGodot AudioStreamPolyphonic.swift
[546/1002] Compiling SwiftGodot AudioStreamRandomizer.swift
[547/1002] Compiling SwiftGodot AudioStreamSynchronized.swift
[548/1002] Compiling SwiftGodot AudioStreamWAV.swift
[549/1002] Compiling SwiftGodot BaseMaterial3D.swift
[550/1002] Compiling SwiftGodot BitMap.swift
[551/1002] Compiling SwiftGodot Bone2D.swift
[552/1002] Compiling SwiftGodot BoneMap.swift
[553/1002] Compiling SwiftGodot BoxMesh.swift
[554/1002] Compiling SwiftGodot ButtonGroup.swift
[555/1002] Compiling SwiftGodot CallbackTweener.swift
[555/1027] Linking EntryPointGenerator
[557/1027] Compiling SwiftParserDiagnostics PresenceUtils.swift
[558/1027] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[559/1027] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[560/1027] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[561/1027] Emitting module SwiftParserDiagnostics
[562/1027] Compiling SwiftParserDiagnostics MissingNodesError.swift
[563/1027] Compiling SwiftParserDiagnostics MissingTokenError.swift
[564/1027] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[565/1027] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[565/1027] Applying EntryPointGenerator
[592/1042] Compiling SwiftGodot GDExtension.swift
[593/1042] Compiling SwiftGodot GDExtensionManager.swift
[594/1042] Compiling SwiftGodot GDScript.swift
[595/1042] Compiling SwiftGodot GodotInstance.swift
[596/1042] Compiling SwiftGodot Gradient.swift
[597/1042] Compiling SwiftGodot GradientTexture1D.swift
[598/1042] Compiling SwiftGodot HMACContext.swift
[599/1042] Compiling SwiftGodot HTTPClient.swift
[600/1042] Compiling SwiftGodot HTTPRequest.swift
[601/1042] Compiling SwiftGodot HashingContext.swift
[602/1042] Compiling SwiftGodot IP.swift
[603/1042] Compiling SwiftGodot Image.swift
[604/1042] Compiling SwiftGodot ImageFormatLoader.swift
[605/1042] Compiling SwiftGodot ImageFormatLoaderExtension.swift
[606/1042] Compiling SwiftGodot ImageTexture.swift
[607/1042] Compiling SwiftGodot ImageTextureLayered.swift
[608/1042] Compiling SwiftGodot ImmediateMesh.swift
[609/1042] Compiling SwiftGodot ImporterMesh.swift
[610/1042] Compiling SwiftGodot Input.swift
[611/1042] Compiling SwiftGodot InputEvent.swift
[612/1042] Compiling SwiftGodot InputEventAction.swift
[613/1042] Compiling SwiftGodot InputEventFromWindow.swift
[614/1042] Compiling SwiftGodot InputEventGesture.swift
[615/1042] Compiling SwiftGodot InputEventJoypadButton.swift
[616/1042] Compiling SwiftGodot InputEventJoypadMotion.swift
[617/1092] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[618/1092] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[619/1092] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[620/1092] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[621/1092] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[622/1092] Compiling SwiftSyntaxBuilder Indenter.swift
[623/1092] Compiling SwiftSyntaxBuilder ListBuilder.swift
[624/1092] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[650/1118] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[651/1118] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[652/1118] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[653/1118] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[654/1118] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[655/1118] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[656/1118] Emitting module SwiftSyntaxBuilder
[657/1118] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[658/1133] Compiling Generator UnsafePointerHelpers.swift
[659/1133] Compiling Generator UtilityGen.swift
[660/1134] Compiling Generator TypeHelpers.swift
[661/1134] Compiling Generator main.swift
[662/1134] Compiling Generator Arguments.swift
[663/1134] Compiling Generator BuiltinGen.swift
[664/1134] Compiling Generator DocModel.swift
[665/1134] Compiling Generator Enums.swift
[666/1134] Compiling Generator ClassGen.swift
[667/1134] Compiling Generator Data.swift
[668/1134] Compiling Generator GenerationSettings.swift
[669/1134] Compiling Generator MethodGen.swift
[670/1134] Compiling Generator NativeStructures.swift
[671/1134] Compiling Generator Printer.swift
[689/1159] Compiling Generator StringOperations.swift
[701/1159] Compiling SwiftGodot InputEventScreenDrag.swift
[702/1159] Compiling SwiftGodot InputEventScreenTouch.swift
[703/1159] Compiling SwiftGodot InputEventShortcut.swift
[704/1159] Compiling SwiftGodot InputEventWithModifiers.swift
[705/1159] Compiling SwiftGodot InputMap.swift
[706/1159] Compiling SwiftGodot InstancePlaceholder.swift
[707/1159] Compiling SwiftGodot IntervalTweener.swift
[715/1159] Compiling SwiftGodot JavaScriptObject.swift
[716/1159] Compiling SwiftGodot LabelSettings.swift
[717/1159] Compiling SwiftGodot LightmapGIData.swift
[718/1159] Compiling SwiftGodot Lightmapper.swift
[769/1234] Emitting module Generator
[773/1234] Write Objects.LinkFileList
[775/1234] Compiling SwiftGodot Curve.swift
[776/1234] Compiling SwiftGodot CurveTexture.swift
[777/1234] Compiling SwiftGodot CurveXYZTexture.swift
[778/1234] Compiling SwiftGodot CylinderMesh.swift
[779/1234] Compiling SwiftGodot DTLSServer.swift
[780/1234] Compiling SwiftGodot DirAccess.swift
[781/1234] Compiling SwiftGodot DisplayServer.swift
[782/1234] Compiling SwiftGodot DisplayServerEmbedded.swift
[783/1234] Compiling SwiftGodot ENetConnection.swift
[784/1234] Compiling SwiftGodot ENetMultiplayerPeer.swift
[785/1234] Compiling SwiftGodot ENetPacketPeer.swift
[786/1234] Compiling SwiftGodot EncodedObjectAsID.swift
[787/1234] Compiling SwiftGodot Engine.swift
[788/1234] Compiling SwiftGodot EngineDebugger.swift
[789/1234] Compiling SwiftGodot EngineProfiler.swift
[790/1234] Compiling SwiftGodot Environment.swift
[791/1234] Compiling SwiftGodot Expression.swift
[792/1234] Compiling SwiftGodot ExternalTexture.swift
[793/1234] Compiling SwiftGodot FastNoiseLite.swift
[794/1234] Compiling SwiftGodot FileAccess.swift
[795/1234] Compiling SwiftGodot FogMaterial.swift
[796/1234] Compiling SwiftGodot Font.swift
[797/1234] Compiling SwiftGodot FontFile.swift
[798/1234] Compiling SwiftGodot FontVariation.swift
[799/1234] Compiling SwiftGodot FramebufferCacheRD.swift
[800/1259] Compiling SwiftGodot Camera2D.swift
[801/1259] Compiling SwiftGodot CameraAttributes.swift
[802/1259] Compiling SwiftGodot CameraAttributesPhysical.swift
[803/1259] Compiling SwiftGodot CameraAttributesPractical.swift
[804/1259] Compiling SwiftGodot CameraFeed.swift
[805/1259] Compiling SwiftGodot CameraServer.swift
[806/1259] Compiling SwiftGodot CameraTexture.swift
[807/1259] Compiling SwiftGodot CanvasItem.swift
[808/1259] Compiling SwiftGodot CanvasItemMaterial.swift
[809/1259] Compiling SwiftGodot CanvasLayer.swift
[810/1259] Compiling SwiftGodot CanvasTexture.swift
[811/1259] Compiling SwiftGodot CapsuleMesh.swift
[812/1259] Compiling SwiftGodot CharFXTransform.swift
[813/1259] Compiling SwiftGodot ColorPalette.swift
[814/1259] Compiling SwiftGodot Compositor.swift
[815/1259] Compiling SwiftGodot CompositorEffect.swift
[816/1259] Compiling SwiftGodot CompressedCubemap.swift
[817/1259] Compiling SwiftGodot CompressedCubemapArray.swift
[818/1259] Compiling SwiftGodot CompressedTextureLayered.swift
[819/1259] Compiling SwiftGodot ConfigFile.swift
[820/1259] Compiling SwiftGodot Control.swift
[821/1259] Compiling SwiftGodot Crypto.swift
[822/1259] Compiling SwiftGodot CryptoKey.swift
[823/1259] Compiling SwiftGodot Cubemap.swift
[824/1259] Compiling SwiftGodot CubemapArray.swift
[824/1284] Linking Generator
[825/1284] Applying Generator
[827/1284] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[828/1284] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[829/1284] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[830/1284] Compiling SwiftGodot PlaceholderCubemap.swift
[831/1284] Compiling SwiftGodot PlaceholderCubemapArray.swift
[832/1284] Compiling SwiftGodot PlaceholderMaterial.swift
[833/1284] Compiling SwiftGodot PlaceholderMesh.swift
[834/1284] Compiling SwiftGodot PlaceholderTextureLayered.swift
[835/1284] Compiling SwiftGodot PlaneMesh.swift
[836/1284] Compiling SwiftGodot PointMesh.swift
[837/1284] Compiling SwiftGodot PolygonPathFinder.swift
[838/1284] Compiling SwiftGodot Popup.swift
[839/1284] Compiling SwiftGodot PopupMenu.swift
[840/1284] Compiling SwiftGodot PopupPanel.swift
[841/1284] Compiling SwiftGodot PrimitiveMesh.swift
[842/1284] Compiling SwiftGodot PrismMesh.swift
[843/1284] Compiling SwiftGodot ProceduralSkyMaterial.swift
[844/1284] Compiling SwiftGodot ProjectSettings.swift
[845/1284] Compiling SwiftGodot PropertyTweener.swift
[846/1284] Compiling SwiftGodot QuadMesh.swift
[847/1284] Compiling SwiftGodot RDAttachmentFormat.swift
[848/1284] Compiling SwiftGodot RDFramebufferPass.swift
[849/1284] Compiling SwiftGodot RDPipelineColorBlendState.swift
[850/1284] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[851/1284] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[852/1309] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[853/1309] Compiling SwiftGodot NavigationPolygon.swift
[854/1309] Compiling SwiftGodot Node.swift
[855/1309] Compiling SwiftGodot Node2D.swift
[856/1309] Compiling SwiftGodot Node3D.swift
[857/1309] Compiling SwiftGodot Node3DGizmo.swift
[858/1309] Compiling SwiftGodot Noise.swift
[859/1309] Compiling SwiftGodot OS.swift
[860/1309] Compiling SwiftGodot OccluderPolygon2D.swift
[861/1309] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[862/1309] Compiling SwiftGodot OggPacketSequence.swift
[863/1309] Compiling SwiftGodot OggPacketSequencePlayback.swift
[864/1309] Compiling SwiftGodot OptimizedTranslation.swift
[865/1309] Compiling SwiftGodot PCKPacker.swift
[866/1309] Compiling SwiftGodot PackedDataContainer.swift
[867/1309] Compiling SwiftGodot PackedDataContainerRef.swift
[868/1309] Compiling SwiftGodot PackedScene.swift
[869/1309] Compiling SwiftGodot PacketPeer.swift
[870/1309] Compiling SwiftGodot PacketPeerDTLS.swift
[871/1309] Compiling SwiftGodot PacketPeerExtension.swift
[872/1309] Compiling SwiftGodot PacketPeerStream.swift
[873/1309] Compiling SwiftGodot PacketPeerUDP.swift
[874/1309] Compiling SwiftGodot PanoramaSkyMaterial.swift
[875/1309] Compiling SwiftGodot ParallaxBackground.swift
[876/1309] Compiling SwiftGodot ParticleProcessMaterial.swift
[902/1359] Compiling SwiftGodot AudioEffectEQ6.swift
[903/1359] Compiling SwiftGodot AudioEffectFilter.swift
[904/1359] Compiling SwiftGodot AudioEffectHardLimiter.swift
[905/1359] Compiling SwiftGodot AudioEffectHighPassFilter.swift
[906/1359] Compiling SwiftGodot AudioEffectHighShelfFilter.swift
[907/1359] Compiling SwiftGodot AudioEffectInstance.swift
[908/1359] Compiling SwiftGodot AudioEffectLimiter.swift
[909/1359] Compiling SwiftGodot AudioEffectLowPassFilter.swift
[910/1359] Compiling SwiftGodot AudioEffectLowShelfFilter.swift
[911/1359] Compiling SwiftGodot AudioEffectNotchFilter.swift
[912/1359] Compiling SwiftGodot AudioEffectPanner.swift
[913/1359] Compiling SwiftGodot AudioEffectPhaser.swift
[914/1359] Compiling SwiftGodot AudioEffectPitchShift.swift
[915/1359] Compiling SwiftGodot AudioEffectRecord.swift
[916/1359] Compiling SwiftGodot AudioEffectReverb.swift
[917/1359] Compiling SwiftGodot AudioEffectSpectrumAnalyzer.swift
[918/1359] Compiling SwiftGodot AudioEffectSpectrumAnalyzerInstance.swift
[919/1359] Compiling SwiftGodot AudioEffectStereoEnhance.swift
[920/1359] Compiling SwiftGodot AudioListener2D.swift
[921/1359] Compiling SwiftGodot AudioListener3D.swift
[922/1359] Compiling SwiftGodot AudioSample.swift
[923/1359] Compiling SwiftGodot AudioSamplePlayback.swift
[924/1359] Compiling SwiftGodot AudioServer.swift
[925/1359] Compiling SwiftGodot AudioStream.swift
[926/1359] Compiling SwiftGodot AudioStreamGenerator.swift
[1027/1484] Compiling SwiftGodot RDPipelineMultisampleState.swift
[1028/1484] Compiling SwiftGodot RDPipelineRasterizationState.swift
[1029/1484] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[1030/1484] Compiling SwiftGodot RDSamplerState.swift
[1031/1484] Compiling SwiftGodot RDShaderFile.swift
[1032/1484] Compiling SwiftGodot RDShaderSPIRV.swift
[1033/1484] Compiling SwiftGodot RDShaderSource.swift
[1034/1484] Compiling SwiftGodot RDTextureFormat.swift
[1035/1484] Compiling SwiftGodot RDTextureView.swift
[1036/1484] Compiling SwiftGodot RDUniform.swift
[1037/1484] Compiling SwiftGodot RDVertexAttribute.swift
[1038/1484] Compiling SwiftGodot RandomNumberGenerator.swift
[1039/1484] Compiling SwiftGodot RegEx.swift
[1040/1484] Compiling SwiftGodot RegExMatch.swift
[1041/1484] Compiling SwiftGodot RenderData.swift
[1042/1484] Compiling SwiftGodot RenderDataExtension.swift
[1043/1484] Compiling SwiftGodot RenderDataRD.swift
[1044/1484] Compiling SwiftGodot RenderSceneBuffers.swift
[1045/1484] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
[1046/1484] Compiling SwiftGodot RenderSceneBuffersExtension.swift
[1047/1484] Compiling SwiftGodot RenderSceneBuffersRD.swift
[1048/1484] Compiling SwiftGodot RenderSceneData.swift
[1049/1484] Compiling SwiftGodot RenderSceneDataExtension.swift
[1050/1484] Compiling SwiftGodot RenderSceneDataRD.swift
[1051/1484] Compiling SwiftGodot RenderingDevice.swift
[1077/1534] Compiling SwiftGodot ResourceSaver.swift
[1078/1534] Compiling SwiftGodot ResourceUID.swift
[1079/1534] Compiling SwiftGodot RibbonTrailMesh.swift
[1080/1534] Compiling SwiftGodot RichTextEffect.swift
[1081/1534] Compiling SwiftGodot SceneMultiplayer.swift
[1082/1534] Compiling SwiftGodot SceneReplicationConfig.swift
[1083/1534] Compiling SwiftGodot SceneState.swift
[1084/1534] Compiling SwiftGodot SceneTree.swift
[1085/1534] Compiling SwiftGodot SceneTreeTimer.swift
[1086/1534] Compiling SwiftGodot Script.swift
[1087/1534] Compiling SwiftGodot ScriptExtension.swift
[1088/1534] Compiling SwiftGodot ScriptLanguage.swift
[1089/1534] Compiling SwiftGodot ScriptLanguageExtension.swift
[1090/1534] Compiling SwiftGodot Semaphore.swift
[1091/1534] Compiling SwiftGodot Shader.swift
[1092/1534] Compiling SwiftGodot ShaderGlobalsOverride.swift
[1093/1534] Compiling SwiftGodot ShaderInclude.swift
[1094/1534] Compiling SwiftGodot ShaderIncludeDB.swift
[1095/1534] Compiling SwiftGodot ShaderMaterial.swift
[1096/1534] Compiling SwiftGodot Shape3D.swift
[1097/1534] Compiling SwiftGodot Shortcut.swift
[1098/1534] Compiling SwiftGodot Skeleton2D.swift
[1099/1534] Compiling SwiftGodot SkeletonModification2D.swift
[1100/1534] Compiling SwiftGodot SkeletonModificationStack2D.swift
[1101/1534] Compiling SwiftGodot SkeletonProfile.swift
[1127/1584] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[1128/1584] Compiling SwiftGodot Skin.swift
[1129/1584] Compiling SwiftGodot SkinReference.swift
[1130/1584] Compiling SwiftGodot Sky.swift
[1131/1584] Compiling SwiftGodot SphereMesh.swift
[1132/1584] Compiling SwiftGodot SpriteFrames.swift
[1133/1584] Compiling SwiftGodot StandardMaterial3D.swift
[1134/1584] Compiling SwiftGodot StatusIndicator.swift
[1135/1584] Compiling SwiftGodot StreamPeer.swift
[1136/1584] Compiling SwiftGodot StreamPeerBuffer.swift
[1137/1584] Compiling SwiftGodot StreamPeerExtension.swift
[1138/1584] Compiling SwiftGodot StreamPeerGZIP.swift
[1139/1584] Compiling SwiftGodot StreamPeerTCP.swift
[1140/1584] Compiling SwiftGodot StreamPeerTLS.swift
[1141/1584] Compiling SwiftGodot StyleBox.swift
[1142/1584] Compiling SwiftGodot StyleBoxEmpty.swift
[1143/1584] Compiling SwiftGodot StyleBoxFlat.swift
[1144/1584] Compiling SwiftGodot StyleBoxLine.swift
[1145/1584] Compiling SwiftGodot StyleBoxTexture.swift
[1146/1584] Compiling SwiftGodot SubViewport.swift
[1147/1584] Compiling SwiftGodot SubtweenTweener.swift
[1148/1584] Compiling SwiftGodot SurfaceTool.swift
[1149/1584] Compiling SwiftGodot SystemFont.swift
[1150/1584] Compiling SwiftGodot TCPServer.swift
[1151/1584] Compiling SwiftGodot TLSOptions.swift
[1152/1609] Compiling SwiftGodot RenderingNativeSurface.swift
[1153/1609] Compiling SwiftGodot RenderingNativeSurfaceApple.swift
[1154/1609] Compiling SwiftGodot RenderingNativeSurfaceVulkan.swift
[1155/1609] Compiling SwiftGodot RenderingServer.swift
[1156/1609] Compiling SwiftGodot Resource.swift
[1157/1609] Compiling SwiftGodot ResourceFormatLoader.swift
[1158/1609] Compiling SwiftGodot ResourceFormatSaver.swift
[1159/1609] Compiling SwiftGodot ResourceImporter.swift
[1160/1609] Compiling SwiftGodot ResourceImporterBMFont.swift
[1161/1609] Compiling SwiftGodot ResourceImporterBitMap.swift
[1162/1609] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
[1163/1609] Compiling SwiftGodot ResourceImporterDynamicFont.swift
[1164/1609] Compiling SwiftGodot ResourceImporterImage.swift
[1165/1609] Compiling SwiftGodot ResourceImporterImageFont.swift
[1166/1609] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
[1167/1609] Compiling SwiftGodot ResourceImporterMP3.swift
[1168/1609] Compiling SwiftGodot ResourceImporterOBJ.swift
[1169/1609] Compiling SwiftGodot ResourceImporterOggVorbis.swift
[1170/1609] Compiling SwiftGodot ResourceImporterScene.swift
[1171/1609] Compiling SwiftGodot ResourceImporterShaderFile.swift
[1172/1609] Compiling SwiftGodot ResourceImporterTexture.swift
[1173/1609] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
[1174/1609] Compiling SwiftGodot ResourceImporterWAV.swift
[1175/1609] Compiling SwiftGodot ResourceLoader.swift
[1176/1609] Compiling SwiftGodot ResourcePreloader.swift
[1227/1684] Compiling SwiftGodot TorusMesh.swift
[1228/1684] Compiling SwiftGodot Translation.swift
[1229/1684] Compiling SwiftGodot TranslationDomain.swift
[1230/1684] Compiling SwiftGodot TranslationServer.swift
[1231/1684] Compiling SwiftGodot TriangleMesh.swift
[1232/1684] Compiling SwiftGodot TubeTrailMesh.swift
[1233/1684] Compiling SwiftGodot Tween.swift
[1234/1684] Compiling SwiftGodot Tweener.swift
[1235/1684] Compiling SwiftGodot UDPServer.swift
[1236/1684] Compiling SwiftGodot UPNP.swift
[1237/1684] Compiling SwiftGodot UPNPDevice.swift
[1238/1684] Compiling SwiftGodot UndoRedo.swift
[1239/1684] Compiling SwiftGodot UniformSetCacheRD.swift
[1240/1684] Compiling SwiftGodot VideoStream.swift
[1241/1684] Compiling SwiftGodot VideoStreamPlayback.swift
[1242/1684] Compiling SwiftGodot VideoStreamTheora.swift
[1243/1684] Compiling SwiftGodot Viewport.swift
[1244/1684] Compiling SwiftGodot ViewportTexture.swift
[1245/1684] Compiling SwiftGodot VisualShader.swift
[1246/1684] Compiling SwiftGodot VisualShaderNode.swift
[1247/1684] Compiling SwiftGodot VisualShaderNodeCustom.swift
[1248/1684] Compiling SwiftGodot VoxelGIData.swift
[1249/1684] Compiling SwiftGodot WeakRef.swift
[1250/1684] Compiling SwiftGodot WebRTCDataChannel.swift
[1251/1684] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[1277/1734] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[1278/1734] Compiling SwiftGodot WebRTCPeerConnection.swift
[1279/1734] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[1280/1734] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[1281/1734] Compiling SwiftGodot WebSocketPeer.swift
[1282/1734] Compiling SwiftGodot Window.swift
[1283/1734] Compiling SwiftGodot WorkerThreadPool.swift
[1284/1734] Compiling SwiftGodot World2D.swift
[1285/1734] Compiling SwiftGodot World3D.swift
[1286/1734] Compiling SwiftGodot WorldEnvironment.swift
[1287/1734] Compiling SwiftGodot X509Certificate.swift
[1288/1734] Compiling SwiftGodot XMLParser.swift
[1289/1734] Compiling SwiftGodot ZIPPacker.swift
[1290/1734] Compiling SwiftGodot ZIPReader.swift
[1291/1734] Compiling SwiftGodot AcceptDialog.swift
[1292/1734] Compiling SwiftGodot AspectRatioContainer.swift
[1293/1734] Compiling SwiftGodot BaseButton.swift
[1294/1734] Compiling SwiftGodot BoxContainer.swift
[1295/1734] Compiling SwiftGodot Button.swift
[1296/1734] Compiling SwiftGodot CenterContainer.swift
[1297/1734] Compiling SwiftGodot CheckBox.swift
[1298/1734] Compiling SwiftGodot CheckButton.swift
[1299/1734] Compiling SwiftGodot ConfirmationDialog.swift
[1300/1734] Compiling SwiftGodot CodeEdit.swift
[1301/1734] Compiling SwiftGodot CodeHighlighter.swift
[1327/1784] Compiling SwiftGodot ColorPicker.swift
[1328/1784] Compiling SwiftGodot ColorPickerButton.swift
[1329/1784] Compiling SwiftGodot ColorRect.swift
[1330/1784] Compiling SwiftGodot Container.swift
[1331/1784] Compiling SwiftGodot FileDialog.swift
[1332/1784] Compiling SwiftGodot FileSystemDock.swift
[1333/1784] Compiling SwiftGodot FlowContainer.swift
[1334/1784] Compiling SwiftGodot GraphEdit.swift
[1335/1784] Compiling SwiftGodot GraphElement.swift
[1336/1784] Compiling SwiftGodot GraphFrame.swift
[1337/1784] Compiling SwiftGodot GraphNode.swift
[1338/1784] Compiling SwiftGodot GridContainer.swift
[1339/1784] Compiling SwiftGodot HBoxContainer.swift
[1340/1784] Compiling SwiftGodot HFlowContainer.swift
[1341/1784] Compiling SwiftGodot HScrollBar.swift
[1342/1784] Compiling SwiftGodot HSeparator.swift
[1343/1784] Compiling SwiftGodot HSlider.swift
[1344/1784] Compiling SwiftGodot HSplitContainer.swift
[1345/1784] Compiling SwiftGodot ItemList.swift
[1346/1784] Compiling SwiftGodot Label.swift
[1347/1784] Compiling SwiftGodot LineEdit.swift
[1348/1784] Compiling SwiftGodot LinkButton.swift
[1349/1784] Compiling SwiftGodot MarginContainer.swift
[1350/1784] Compiling SwiftGodot MenuBar.swift
[1351/1784] Compiling SwiftGodot MenuButton.swift
[1377/1834] Compiling SwiftGodot Performance.swift
[1378/1834] Compiling SwiftGodot PhysicalSkyMaterial.swift
[1379/1834] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[1380/1834] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[1381/1834] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[1382/1834] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[1383/1834] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[1384/1834] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[1385/1834] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[1386/1834] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[1387/1834] Compiling SwiftGodot PhysicsMaterial.swift
[1388/1834] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[1389/1834] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[1390/1834] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[1391/1834] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[1392/1834] Compiling SwiftGodot PhysicsServer2D.swift
[1393/1834] Compiling SwiftGodot PhysicsServer2DExtension.swift
[1394/1834] Compiling SwiftGodot PhysicsServer2DManager.swift
[1395/1834] Compiling SwiftGodot PhysicsServer3D.swift
[1396/1834] Compiling SwiftGodot PhysicsServer3DExtension.swift
[1397/1834] Compiling SwiftGodot PhysicsServer3DManager.swift
[1398/1834] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[1399/1834] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[1400/1834] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[1401/1834] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[1402/1858] Compiling SwiftGodot VFlowContainer.swift
[1403/1858] Compiling SwiftGodot VScrollBar.swift
[1404/1858] Compiling SwiftGodot VSeparator.swift
[1405/1858] Compiling SwiftGodot VSlider.swift
[1406/1858] Compiling SwiftGodot VSplitContainer.swift
[1407/1858] Compiling SwiftGodot VideoStreamPlayer.swift
[1408/1858] Compiling SwiftGodot AStar3D.swift
[1409/1858] Compiling SwiftGodot AnimatableBody3D.swift
[1410/1858] Compiling SwiftGodot AnimatedSprite3D.swift
[1411/1858] Compiling SwiftGodot Area3D.swift
[1412/1858] Compiling SwiftGodot ArrayOccluder3D.swift
[1413/1858] Compiling SwiftGodot AudioStreamPlayer3D.swift
[1414/1858] Compiling SwiftGodot BoneAttachment3D.swift
[1415/1858] Compiling SwiftGodot BoxOccluder3D.swift
[1416/1858] Compiling SwiftGodot BoxShape3D.swift
[1417/1858] Compiling SwiftGodot CPUParticles3D.swift
[1418/1858] Compiling SwiftGodot CSGBox3D.swift
[1419/1858] Compiling SwiftGodot CSGCombiner3D.swift
[1420/1858] Compiling SwiftGodot CSGCylinder3D.swift
[1421/1858] Compiling SwiftGodot CSGMesh3D.swift
[1422/1858] Compiling SwiftGodot CSGPolygon3D.swift
[1423/1858] Compiling SwiftGodot CSGPrimitive3D.swift
[1424/1858] Compiling SwiftGodot CSGShape3D.swift
[1425/1858] Compiling SwiftGodot CSGSphere3D.swift
[1426/1858] Compiling SwiftGodot CSGTorus3D.swift
[1452/1906] Compiling SwiftGodot Camera3D.swift
[1453/1906] Compiling SwiftGodot CapsuleShape3D.swift
[1454/1906] Compiling SwiftGodot CharacterBody3D.swift
[1455/1906] Compiling SwiftGodot CollisionObject3D.swift
[1456/1906] Compiling SwiftGodot CollisionPolygon3D.swift
[1457/1906] Compiling SwiftGodot CollisionShape3D.swift
[1458/1906] Compiling SwiftGodot CompressedTexture3D.swift
[1459/1906] Compiling SwiftGodot ConcavePolygonShape3D.swift
[1460/1906] Compiling SwiftGodot ConeTwistJoint3D.swift
[1461/1906] Compiling SwiftGodot ConvexPolygonShape3D.swift
[1462/1906] Compiling SwiftGodot Curve3D.swift
[1463/1906] Compiling SwiftGodot CylinderShape3D.swift
[1464/1906] Compiling SwiftGodot Decal.swift
[1465/1906] Compiling SwiftGodot DirectionalLight3D.swift
[1466/1906] Compiling SwiftGodot FogVolume.swift
[1467/1906] Compiling SwiftGodot GPUParticles3D.swift
[1468/1906] Compiling SwiftGodot GPUParticlesAttractor3D.swift
[1469/1906] Compiling SwiftGodot GPUParticlesAttractorBox3D.swift
[1470/1906] Compiling SwiftGodot GPUParticlesAttractorSphere3D.swift
[1471/1906] Compiling SwiftGodot GPUParticlesAttractorVectorField3D.swift
[1472/1906] Compiling SwiftGodot GPUParticlesCollision3D.swift
[1473/1906] Compiling SwiftGodot GPUParticlesCollisionBox3D.swift
[1474/1906] Compiling SwiftGodot GPUParticlesCollisionHeightField3D.swift
[1475/1906] Compiling SwiftGodot GPUParticlesCollisionSDF3D.swift
[1476/1906] Compiling SwiftGodot GPUParticlesCollisionSphere3D.swift
[1527/1978] Compiling SwiftGodot SliderJoint3D.swift
[1528/1978] Compiling SwiftGodot SoftBody3D.swift
[1529/1978] Compiling SwiftGodot SphereOccluder3D.swift
[1530/1978] Compiling SwiftGodot SphereShape3D.swift
[1531/1978] Compiling SwiftGodot SpotLight3D.swift
[1532/1978] Compiling SwiftGodot SpringArm3D.swift
[1533/1978] Compiling SwiftGodot SpringBoneCollision3D.swift
[1534/1978] Compiling SwiftGodot SpringBoneCollisionCapsule3D.swift
[1535/1978] Compiling SwiftGodot SpringBoneCollisionPlane3D.swift
[1536/1978] Compiling SwiftGodot SpringBoneCollisionSphere3D.swift
[1537/1978] Compiling SwiftGodot SpringBoneSimulator3D.swift
[1538/1978] Compiling SwiftGodot Sprite3D.swift
[1539/1978] Compiling SwiftGodot SpriteBase3D.swift
[1540/1978] Compiling SwiftGodot StaticBody3D.swift
[1541/1978] Compiling SwiftGodot Texture3D.swift
[1542/1978] Compiling SwiftGodot Texture3DRD.swift
[1543/1978] Compiling SwiftGodot VehicleBody3D.swift
[1544/1978] Compiling SwiftGodot VehicleWheel3D.swift
[1545/1978] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[1546/1978] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[1547/1978] Compiling SwiftGodot VisualInstance3D.swift
[1548/1978] Compiling SwiftGodot VoxelGI.swift
[1549/1978] Compiling SwiftGodot WorldBoundaryShape3D.swift
[1550/1978] Compiling SwiftGodot FBXDocument.swift
[1551/1978] Compiling SwiftGodot FBXState.swift
[1552/2002] Compiling SwiftGodot NoiseTexture3D.swift
[1553/2002] Compiling SwiftGodot ORMMaterial3D.swift
[1554/2002] Compiling SwiftGodot Occluder3D.swift
[1555/2002] Compiling SwiftGodot OccluderInstance3D.swift
[1556/2002] Compiling SwiftGodot OmniLight3D.swift
[1557/2002] Compiling SwiftGodot Path3D.swift
[1558/2002] Compiling SwiftGodot PathFollow3D.swift
[1559/2002] Compiling SwiftGodot PhysicalBone3D.swift
[1560/2002] Compiling SwiftGodot PhysicalBoneSimulator3D.swift
[1561/2002] Compiling SwiftGodot PhysicsBody3D.swift
[1562/2002] Compiling SwiftGodot PinJoint3D.swift
[1563/2002] Compiling SwiftGodot PlaceholderTexture3D.swift
[1564/2002] Compiling SwiftGodot PolygonOccluder3D.swift
[1565/2002] Compiling SwiftGodot QuadOccluder3D.swift
[1566/2002] Compiling SwiftGodot RayCast3D.swift
[1567/2002] Compiling SwiftGodot ReflectionProbe.swift
[1568/2002] Compiling SwiftGodot RemoteTransform3D.swift
[1569/2002] Compiling SwiftGodot RetargetModifier3D.swift
[1570/2002] Compiling SwiftGodot RigidBody3D.swift
[1571/2002] Compiling SwiftGodot RootMotionView.swift
[1572/2002] Compiling SwiftGodot SeparationRayShape3D.swift
[1573/2002] Compiling SwiftGodot ShapeCast3D.swift
[1574/2002] Compiling SwiftGodot Skeleton3D.swift
[1575/2002] Compiling SwiftGodot SkeletonIK3D.swift
[1576/2002] Compiling SwiftGodot SkeletonModifier3D.swift
[1627/2074] Compiling SwiftGodot NinePatchRect.swift
[1628/2074] Compiling SwiftGodot OptionButton.swift
[1629/2074] Compiling SwiftGodot Panel.swift
[1630/2074] Compiling SwiftGodot PanelContainer.swift
[1631/2074] Compiling SwiftGodot ProgressBar.swift
[1632/2074] Compiling SwiftGodot Range.swift
[1633/2074] Compiling SwiftGodot ReferenceRect.swift
[1634/2074] Compiling SwiftGodot RichTextLabel.swift
[1635/2074] Compiling SwiftGodot ScrollBar.swift
[1636/2074] Compiling SwiftGodot ScrollContainer.swift
[1637/2074] Compiling SwiftGodot Separator.swift
[1638/2074] Compiling SwiftGodot Slider.swift
[1639/2074] Compiling SwiftGodot SpinBox.swift
[1640/2074] Compiling SwiftGodot SplitContainer.swift
[1641/2074] Compiling SwiftGodot SubViewportContainer.swift
[1642/2074] Compiling SwiftGodot SyntaxHighlighter.swift
[1643/2074] Compiling SwiftGodot TabBar.swift
[1644/2074] Compiling SwiftGodot TabContainer.swift
[1645/2074] Compiling SwiftGodot TextEdit.swift
[1646/2074] Compiling SwiftGodot TextureButton.swift
[1647/2074] Compiling SwiftGodot TextureProgressBar.swift
[1648/2074] Compiling SwiftGodot TextureRect.swift
[1649/2074] Compiling SwiftGodot Tree.swift
[1650/2074] Compiling SwiftGodot TreeItem.swift
[1651/2074] Compiling SwiftGodot VBoxContainer.swift
[1677/2122] Compiling SwiftGodot TextLine.swift
[1678/2122] Compiling SwiftGodot TextMesh.swift
[1679/2122] Compiling SwiftGodot TextParagraph.swift
[1680/2122] Compiling SwiftGodot TextServer.swift
[1681/2122] Compiling SwiftGodot TextServerAdvanced.swift
[1682/2122] Compiling SwiftGodot TextServerDummy.swift
[1683/2122] Compiling SwiftGodot TextServerExtension.swift
[1684/2122] Compiling SwiftGodot TextServerManager.swift
[1685/2122] Compiling SwiftGodot Texture.swift
[1686/2122] Compiling SwiftGodot Texture2D.swift
[1687/2122] Compiling SwiftGodot TextureCubemapArrayRD.swift
[1688/2122] Compiling SwiftGodot TextureCubemapRD.swift
[1689/2122] Compiling SwiftGodot TextureLayered.swift
[1690/2122] Compiling SwiftGodot TextureLayeredRD.swift
[1691/2122] Compiling SwiftGodot Theme.swift
[1692/2122] Compiling SwiftGodot ThemeDB.swift
[1693/2122] Compiling SwiftGodot Thread.swift
[1694/2122] Compiling SwiftGodot TileData.swift
[1695/2122] Compiling SwiftGodot TileMapPattern.swift
[1696/2122] Compiling SwiftGodot TileSet.swift
[1697/2122] Compiling SwiftGodot TileSetAtlasSource.swift
[1698/2122] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[1699/2122] Compiling SwiftGodot TileSetSource.swift
[1700/2122] Compiling SwiftGodot Time.swift
[1701/2122] Compiling SwiftGodot Timer.swift
[1702/2146] Compiling SwiftGodot Area2D.swift
[1703/2146] Compiling SwiftGodot AudioStreamPlayer2D.swift
[1704/2146] Compiling SwiftGodot BackBufferCopy.swift
[1705/2146] Compiling SwiftGodot CPUParticles2D.swift
[1706/2146] Compiling SwiftGodot CanvasGroup.swift
[1707/2146] Compiling SwiftGodot CanvasModulate.swift
[1708/2146] Compiling SwiftGodot CapsuleShape2D.swift
[1709/2146] Compiling SwiftGodot CharacterBody2D.swift
[1710/2146] Compiling SwiftGodot CircleShape2D.swift
[1711/2146] Compiling SwiftGodot CollisionObject2D.swift
[1712/2146] Compiling SwiftGodot CollisionPolygon2D.swift
[1713/2146] Compiling SwiftGodot CollisionShape2D.swift
[1714/2146] Compiling SwiftGodot CompressedTexture2D.swift
[1715/2146] Compiling SwiftGodot CompressedTexture2DArray.swift
[1716/2146] Compiling SwiftGodot ConcavePolygonShape2D.swift
[1717/2146] Compiling SwiftGodot ConvexPolygonShape2D.swift
[1718/2146] Compiling SwiftGodot Curve2D.swift
[1719/2146] Compiling SwiftGodot DampedSpringJoint2D.swift
[1720/2146] Compiling SwiftGodot DirectionalLight2D.swift
[1721/2146] Compiling SwiftGodot GPUParticles2D.swift
[1722/2146] Compiling SwiftGodot Geometry2D.swift
[1723/2146] Compiling SwiftGodot GradientTexture2D.swift
[1724/2146] Compiling SwiftGodot GrooveJoint2D.swift
[1725/2146] Compiling SwiftGodot Joint2D.swift
[1726/2170] Compiling SwiftGodot GLTFAccessor.swift
[1727/2170] Compiling SwiftGodot GLTFAnimation.swift
[1728/2170] Compiling SwiftGodot GLTFBufferView.swift
[1729/2170] Compiling SwiftGodot GLTFCamera.swift
[1730/2170] Compiling SwiftGodot GLTFDocument.swift
[1731/2170] Compiling SwiftGodot GLTFDocumentExtension.swift
[1732/2170] Compiling SwiftGodot GLTFDocumentExtensionConvertImporterMesh.swift
[1733/2170] Compiling SwiftGodot GLTFLight.swift
[1734/2170] Compiling SwiftGodot GLTFMesh.swift
[1735/2170] Compiling SwiftGodot GLTFNode.swift
[1736/2170] Compiling SwiftGodot GLTFObjectModelProperty.swift
[1737/2170] Compiling SwiftGodot GLTFPhysicsBody.swift
[1738/2170] Compiling SwiftGodot GLTFPhysicsShape.swift
[1739/2170] Compiling SwiftGodot GLTFSkeleton.swift
[1740/2170] Compiling SwiftGodot GLTFSkin.swift
[1741/2170] Compiling SwiftGodot GLTFSpecGloss.swift
[1742/2170] Compiling SwiftGodot GLTFState.swift
[1743/2170] Compiling SwiftGodot GLTFTexture.swift
[1744/2170] Compiling SwiftGodot GLTFTextureSampler.swift
[1745/2170] Compiling SwiftGodot AStar2D.swift
[1746/2170] Compiling SwiftGodot AStarGrid2D.swift
[1747/2170] Compiling SwiftGodot AnimatableBody2D.swift
[1748/2170] Compiling SwiftGodot AnimatedSprite2D.swift
[1749/2170] Compiling SwiftGodot AnimationNodeBlendSpace2D.swift
[1750/2194] Compiling SwiftGodot Generic6DOFJoint3D.swift
[1751/2194] Compiling SwiftGodot Geometry3D.swift
[1752/2194] Compiling SwiftGodot GeometryInstance3D.swift
[1753/2194] Compiling SwiftGodot GridMap.swift
[1754/2194] Compiling SwiftGodot HeightMapShape3D.swift
[1755/2194] Compiling SwiftGodot HingeJoint3D.swift
[1756/2194] Compiling SwiftGodot ImageTexture3D.swift
[1757/2194] Compiling SwiftGodot ImporterMeshInstance3D.swift
[1758/2194] Compiling SwiftGodot Joint3D.swift
[1759/2194] Compiling SwiftGodot KinematicCollision3D.swift
[1760/2194] Compiling SwiftGodot Label3D.swift
[1761/2194] Compiling SwiftGodot Light3D.swift
[1762/2194] Compiling SwiftGodot LightmapGI.swift
[1763/2194] Compiling SwiftGodot LightmapProbe.swift
[1764/2194] Compiling SwiftGodot LookAtModifier3D.swift
[1765/2194] Compiling SwiftGodot Marker3D.swift
[1766/2194] Compiling SwiftGodot MeshInstance3D.swift
[1767/2194] Compiling SwiftGodot MultiMeshInstance3D.swift
[1768/2194] Compiling SwiftGodot NavigationAgent3D.swift
[1769/2194] Compiling SwiftGodot NavigationLink3D.swift
[1770/2194] Compiling SwiftGodot NavigationObstacle3D.swift
[1771/2194] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[1772/2194] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[1773/2194] Compiling SwiftGodot NavigationRegion3D.swift
[1774/2194] Compiling SwiftGodot NavigationServer3D.swift
[1775/2218] Compiling SwiftGodot KinematicCollision2D.swift
[1776/2218] Compiling SwiftGodot Light2D.swift
[1777/2218] Compiling SwiftGodot LightOccluder2D.swift
[1778/2218] Compiling SwiftGodot Line2D.swift
[1779/2218] Compiling SwiftGodot Marker2D.swift
[1780/2218] Compiling SwiftGodot MeshInstance2D.swift
[1781/2218] Compiling SwiftGodot MultiMeshInstance2D.swift
[1782/2218] Compiling SwiftGodot NavigationAgent2D.swift
[1783/2218] Compiling SwiftGodot NavigationLink2D.swift
[1784/2218] Compiling SwiftGodot NavigationObstacle2D.swift
[1785/2218] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[1786/2218] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[1787/2218] Compiling SwiftGodot NavigationRegion2D.swift
[1788/2218] Compiling SwiftGodot NavigationServer2D.swift
[1789/2218] Compiling SwiftGodot NoiseTexture2D.swift
[1790/2218] Compiling SwiftGodot Parallax2D.swift
[1791/2218] Compiling SwiftGodot ParallaxLayer.swift
[1792/2218] Compiling SwiftGodot Path2D.swift
[1793/2218] Compiling SwiftGodot PathFollow2D.swift
[1794/2218] Compiling SwiftGodot PhysicalBone2D.swift
[1795/2218] Compiling SwiftGodot PhysicsBody2D.swift
[1796/2218] Compiling SwiftGodot PinJoint2D.swift
[1797/2218] Compiling SwiftGodot PlaceholderTexture2D.swift
[1798/2218] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[1921/2362] Compiling SwiftGodot VisualShaderNodeMix.swift
[1922/2362] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[1923/2362] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[1924/2362] Compiling SwiftGodot VisualShaderNodeOutput.swift
[1925/2362] Compiling SwiftGodot VisualShaderNodeParameter.swift
[1926/2362] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[1927/2362] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[1928/2362] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[1929/2362] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[1930/2362] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[1931/2362] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[1932/2362] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[1933/2362] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[1934/2362] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[1935/2362] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[1936/2362] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[1937/2362] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[1938/2362] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[1939/2362] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[1940/2362] Compiling SwiftGodot VisualShaderNodeRemap.swift
[1941/2362] Compiling SwiftGodot VisualShaderNodeReroute.swift
[1942/2362] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[1943/2362] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[1944/2362] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[1945/2386] Compiling SwiftGodot TileMapLayer.swift
[1946/2386] Compiling SwiftGodot TouchScreenButton.swift
[1947/2386] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[1948/2386] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[1949/2386] Compiling SwiftGodot WorldBoundaryShape2D.swift
[1950/2386] Compiling SwiftGodot MobileVRInterface.swift
[1951/2386] Compiling SwiftGodot OpenXRAPIExtension.swift
[1952/2386] Compiling SwiftGodot OpenXRAction.swift
[1953/2386] Compiling SwiftGodot OpenXRActionBindingModifier.swift
[1954/2386] Compiling SwiftGodot OpenXRActionMap.swift
[1955/2386] Compiling SwiftGodot OpenXRActionSet.swift
[1956/2386] Compiling SwiftGodot OpenXRAnalogThresholdModifier.swift
[1957/2386] Compiling SwiftGodot OpenXRBindingModifier.swift
[1958/2386] Compiling SwiftGodot OpenXRCompositionLayer.swift
[1959/2386] Compiling SwiftGodot OpenXRCompositionLayerCylinder.swift
[1960/2386] Compiling SwiftGodot OpenXRCompositionLayerEquirect.swift
[1961/2386] Compiling SwiftGodot OpenXRCompositionLayerQuad.swift
[1962/2386] Compiling SwiftGodot OpenXRDpadBindingModifier.swift
[1963/2386] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[1964/2386] Compiling SwiftGodot OpenXRHand.swift
[1965/2386] Compiling SwiftGodot OpenXRHapticBase.swift
[1966/2386] Compiling SwiftGodot OpenXRHapticVibration.swift
[1967/2386] Compiling SwiftGodot OpenXRIPBinding.swift
[1968/2386] Compiling SwiftGodot OpenXRIPBindingModifier.swift
[2017/2458] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[2018/2458] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[2019/2458] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[2020/2458] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[2021/2458] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[2022/2458] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[2023/2458] Compiling SwiftGodot VisualShaderNodeExpression.swift
[2024/2458] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[2025/2458] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[2026/2458] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[2027/2458] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[2028/2458] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[2029/2458] Compiling SwiftGodot VisualShaderNodeFrame.swift
[2030/2458] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[2031/2458] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[2032/2458] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[2033/2458] Compiling SwiftGodot VisualShaderNodeIf.swift
[2034/2458] Compiling SwiftGodot VisualShaderNodeInput.swift
[2035/2458] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[2036/2458] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[2037/2458] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[2038/2458] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[2039/2458] Compiling SwiftGodot VisualShaderNodeIs.swift
[2040/2458] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[2041/2458] Compiling SwiftGodot PointLight2D.swift
[2042/2458] Compiling SwiftGodot Polygon2D.swift
[2043/2458] Compiling SwiftGodot PortableCompressedTexture2D.swift
[2044/2458] Compiling SwiftGodot RayCast2D.swift
[2045/2458] Compiling SwiftGodot RectangleShape2D.swift
[2046/2458] Compiling SwiftGodot RemoteTransform2D.swift
[2047/2458] Compiling SwiftGodot RigidBody2D.swift
[2048/2458] Compiling SwiftGodot SegmentShape2D.swift
[2049/2458] Compiling SwiftGodot SeparationRayShape2D.swift
[2050/2458] Compiling SwiftGodot Shape2D.swift
[2051/2458] Compiling SwiftGodot ShapeCast2D.swift
[2052/2458] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[2053/2458] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[2054/2458] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[2055/2458] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[2056/2458] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[2057/2458] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[2058/2458] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[2059/2458] Compiling SwiftGodot Sprite2D.swift
[2060/2458] Compiling SwiftGodot StaticBody2D.swift
[2061/2458] Compiling SwiftGodot Texture2DArray.swift
[2062/2458] Compiling SwiftGodot Texture2DArrayRD.swift
[2063/2458] Compiling SwiftGodot Texture2DRD.swift
[2064/2458] Compiling SwiftGodot TileMap.swift
[2089/2458] Compiling SwiftGodot EditorTranslationParserPlugin.swift
[2090/2458] Compiling SwiftGodot EditorUndoRedoManager.swift
[2091/2458] Compiling SwiftGodot EditorVCSInterface.swift
[2092/2458] Compiling SwiftGodot GDScriptSyntaxHighlighter.swift
[2093/2458] Compiling SwiftGodot GridMapEditorPlugin.swift
[2094/2458] Compiling SwiftGodot OpenXRInteractionProfileEditor.swift
[2095/2458] Compiling SwiftGodot OpenXRInteractionProfileEditorBase.swift
[2096/2458] Compiling SwiftGodot ScriptCreateDialog.swift
[2097/2458] Compiling SwiftGodot ScriptEditor.swift
[2098/2458] Compiling SwiftGodot ScriptEditorBase.swift
[2099/2458] Compiling SwiftGodot OpenXRBindingModifierEditor.swift
[2100/2458] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[2101/2458] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[2102/2458] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[2103/2458] Compiling SwiftGodot VisualShaderNodeClamp.swift
[2104/2458] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[2105/2458] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[2106/2458] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[2107/2458] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[2108/2458] Compiling SwiftGodot VisualShaderNodeComment.swift
[2109/2458] Compiling SwiftGodot VisualShaderNodeCompare.swift
[2110/2458] Compiling SwiftGodot VisualShaderNodeConstant.swift
[2111/2458] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[2112/2458] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[2113/2458] Compiling SwiftGodot OpenXRInteractionProfile.swift
[2114/2458] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[2115/2458] Compiling SwiftGodot OpenXRInterface.swift
[2116/2458] Compiling SwiftGodot OpenXRVisibilityMask.swift
[2117/2458] Compiling SwiftGodot WebXRInterface.swift
[2118/2458] Compiling SwiftGodot XRAnchor3D.swift
[2119/2458] Compiling SwiftGodot XRBodyModifier3D.swift
[2120/2458] Compiling SwiftGodot XRBodyTracker.swift
[2121/2458] Compiling SwiftGodot XRCamera3D.swift
[2122/2458] Compiling SwiftGodot XRController3D.swift
[2123/2458] Compiling SwiftGodot XRControllerTracker.swift
[2124/2458] Compiling SwiftGodot XRFaceModifier3D.swift
[2125/2458] Compiling SwiftGodot XRFaceTracker.swift
[2126/2458] Compiling SwiftGodot XRHandModifier3D.swift
[2127/2458] Compiling SwiftGodot XRHandTracker.swift
[2128/2458] Compiling SwiftGodot XRInterface.swift
[2129/2458] Compiling SwiftGodot XRInterfaceExtension.swift
[2130/2458] Compiling SwiftGodot XRNode3D.swift
[2131/2458] Compiling SwiftGodot XROrigin3D.swift
[2132/2458] Compiling SwiftGodot XRPose.swift
[2133/2458] Compiling SwiftGodot XRPositionalTracker.swift
[2134/2458] Compiling SwiftGodot XRServer.swift
[2135/2458] Compiling SwiftGodot XRTracker.swift
[2136/2458] Compiling SwiftGodot XRVRS.swift
[2161/2458] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[2162/2458] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[2163/2458] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[2164/2458] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[2165/2458] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[2166/2458] Compiling SwiftGodot VisualShaderNodeStep.swift
[2167/2458] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[2168/2458] Compiling SwiftGodot VisualShaderNodeTexture.swift
[2169/2458] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[2170/2458] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[2171/2458] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[2172/2458] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[2173/2458] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[2174/2458] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[2175/2458] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[2176/2458] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[2177/2458] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[2178/2458] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[2179/2458] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[2180/2458] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[2181/2458] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[2182/2458] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[2183/2458] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[2184/2458] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[2209/2458] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[2210/2458] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[2211/2458] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[2212/2458] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[2213/2458] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[2214/2458] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[2215/2458] Compiling SwiftGodot VisualShaderNodeVarying.swift
[2216/2458] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[2217/2458] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[2218/2458] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[2219/2458] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[2220/2458] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[2221/2458] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[2222/2458] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[2223/2458] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[2224/2458] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[2225/2458] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[2226/2458] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[2227/2458] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[2228/2458] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[2229/2458] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[2230/2458] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[2231/2458] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[2232/2458] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[2305/2458] Compiling SwiftGodot EditorNode3DGizmo.swift
[2306/2458] Compiling SwiftGodot EditorNode3DGizmoPlugin.swift
[2307/2458] Compiling SwiftGodot EditorPaths.swift
[2308/2458] Compiling SwiftGodot EditorPlugin.swift
[2309/2458] Compiling SwiftGodot EditorProperty.swift
[2310/2458] Compiling SwiftGodot EditorResourceConversionPlugin.swift
[2311/2458] Compiling SwiftGodot EditorResourcePicker.swift
[2312/2458] Compiling SwiftGodot EditorResourcePreview.swift
[2313/2458] Compiling SwiftGodot EditorResourcePreviewGenerator.swift
[2314/2458] Compiling SwiftGodot EditorResourceTooltipPlugin.swift
[2315/2458] Compiling SwiftGodot EditorSceneFormatImporter.swift
[2316/2458] Compiling SwiftGodot EditorSceneFormatImporterBlend.swift
[2317/2458] Compiling SwiftGodot EditorSceneFormatImporterFBX2GLTF.swift
[2318/2458] Compiling SwiftGodot EditorSceneFormatImporterGLTF.swift
[2319/2458] Compiling SwiftGodot EditorSceneFormatImporterUFBX.swift
[2320/2458] Compiling SwiftGodot EditorScenePostImport.swift
[2321/2458] Compiling SwiftGodot EditorScenePostImportPlugin.swift
[2322/2458] Compiling SwiftGodot EditorScript.swift
[2323/2458] Compiling SwiftGodot EditorScriptPicker.swift
[2324/2458] Compiling SwiftGodot EditorSelection.swift
[2325/2458] Compiling SwiftGodot EditorSettings.swift
[2326/2458] Compiling SwiftGodot EditorSpinSlider.swift
[2327/2458] Compiling SwiftGodot EditorSyntaxHighlighter.swift
[2328/2458] Compiling SwiftGodot EditorToaster.swift
[2329/2458] Compiling SwiftGodot EditorCommandPalette.swift
[2330/2458] Compiling SwiftGodot EditorContextMenuPlugin.swift
[2331/2458] Compiling SwiftGodot EditorDebuggerPlugin.swift
[2332/2458] Compiling SwiftGodot EditorDebuggerSession.swift
[2333/2458] Compiling SwiftGodot EditorExportPlatform.swift
[2334/2458] Compiling SwiftGodot EditorExportPlatformAndroid.swift
[2335/2458] Compiling SwiftGodot EditorExportPlatformExtension.swift
[2336/2458] Compiling SwiftGodot EditorExportPlatformIOS.swift
[2337/2458] Compiling SwiftGodot EditorExportPlatformLinuxBSD.swift
[2338/2458] Compiling SwiftGodot EditorExportPlatformMacOS.swift
[2339/2458] Compiling SwiftGodot EditorExportPlatformPC.swift
[2340/2458] Compiling SwiftGodot EditorExportPlatformWeb.swift
[2341/2458] Compiling SwiftGodot EditorExportPlatformWindows.swift
[2342/2458] Compiling SwiftGodot EditorExportPlugin.swift
[2343/2458] Compiling SwiftGodot EditorExportPreset.swift
[2344/2458] Compiling SwiftGodot EditorFeatureProfile.swift
[2345/2458] Compiling SwiftGodot EditorFileDialog.swift
[2346/2458] Compiling SwiftGodot EditorFileSystem.swift
[2347/2458] Compiling SwiftGodot EditorFileSystemDirectory.swift
[2348/2458] Compiling SwiftGodot EditorFileSystemImportFormatSupportQuery.swift
[2349/2458] Compiling SwiftGodot EditorImportPlugin.swift
[2350/2458] Compiling SwiftGodot EditorInspector.swift
[2351/2458] Compiling SwiftGodot EditorInspectorPlugin.swift
[2352/2458] Compiling SwiftGodot EditorInterface.swift
[2426/2458] Emitting module SwiftGodot
[2452/2458] Write Objects.LinkFileList
[2454/2483] Compiling ManualExtension ManualExtension.swift
[2455/2483] Emitting module ManualExtension
[2455/2483] Write Objects.LinkFileList
[2457/2483] Compiling SimpleExtension EntryPoint.generated.swift
[2458/2483] Compiling SimpleExtension SimpleExtension.swift
[2459/2483] Emitting module SimpleExtension
[2459/2483] Write Objects.LinkFileList
[2460/2483] Linking libSwiftGodot.dylib
[2461/2483] Linking libManualExtension.dylib
[2462/2483] Linking libSimpleExtension.dylib
[2464/2483] Compiling SwiftGodotTestability GodotTestHost.swift
[2466/2483] Compiling SwiftGodotTestability EmbeddedTestCase.swift
[2467/2483] Emitting module SwiftGodotTestability
[2468/2483] Compiling SwiftGodotTestability TestHost.swift
[2469/2483] Compiling SwiftGodotTestability SimpleTestHost.swift
[2470/2483] Compiling SwiftGodotTestability SilentTestRun.swift
[2471/2483] Compiling SwiftGodotTestability EmbeddedTestCaseSuite.swift
[2472/2483] Compiling SwiftGodotTestability GodotTestCase.swift
[2473/2483] Compiling SwiftGodotTestability EmbeddingController.swift
[2474/2483] Compiling SwiftGodotTestability GodotRuntime.swift
/Users/admin/builder/spi-builder-workspace/Sources/GDExtension/include/gdextension_interface.h:429:2: error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
427 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE,
428 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16,
429 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32,
| `- error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
430 | } GDExtensionClassMethodArgumentMetadata;
431 |
/Users/admin/builder/spi-builder-workspace/.build/artifacts/spi-builder-workspace/libgodot_tests/libgodot.xcframework/macos-arm64_x86_64/Headers/gdextension_interface.h:378:9: note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32'
376 | } GDExtensionClassMethodFlags;
377 |
378 | typedef enum {
| `- note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32'
379 | GDEXTENSION_METHOD_ARGUMENT_METADATA_NONE,
380 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_INT8,
/Users/admin/builder/spi-builder-workspace/Sources/GDExtension/include/gdextension_interface.h:428:2: error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
426 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_FLOAT,
427 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE,
428 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16,
| `- error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
429 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32,
430 | } GDExtensionClassMethodArgumentMetadata;
/Users/admin/builder/spi-builder-workspace/.build/artifacts/spi-builder-workspace/libgodot_tests/libgodot.xcframework/macos-arm64_x86_64/Headers/gdextension_interface.h:378:9: note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16'
376 | } GDExtensionClassMethodFlags;
377 |
378 | typedef enum {
| `- note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16'
379 | GDEXTENSION_METHOD_ARGUMENT_METADATA_NONE,
380 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_INT8,
[2475/2483] Compiling SwiftGodotTestability TestHost.swift
[2476/2483] Compiling SwiftGodotTestability SimpleTestHost.swift
[2477/2483] Compiling SwiftGodotTestability SilentTestRun.swift
[2478/2483] Compiling SwiftGodotTestability EmbeddingController.swift
[2479/2483] Compiling SwiftGodotTestability EmbeddedTestCaseSuite.swift
[2480/2483] Compiling SwiftGodotTestability EmbeddedTestCase.swift
[2481/2483] Emitting module SwiftGodotTestability
[2482/2483] Compiling SwiftGodotTestability GodotTestCase.swift
[2483/2483] Compiling SwiftGodotTestability GodotRuntime.swift
/Users/admin/builder/spi-builder-workspace/Sources/GDExtension/include/gdextension_interface.h:429:2: error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
427 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE,
428 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16,
429 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32,
| `- error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
430 | } GDExtensionClassMethodArgumentMetadata;
431 |
/Users/admin/builder/spi-builder-workspace/.build/artifacts/spi-builder-workspace/libgodot_tests/libgodot.xcframework/macos-arm64_x86_64/Headers/gdextension_interface.h:378:9: note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32'
376 | } GDExtensionClassMethodFlags;
377 |
378 | typedef enum {
| `- note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32'
379 | GDEXTENSION_METHOD_ARGUMENT_METADATA_NONE,
380 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_INT8,
/Users/admin/builder/spi-builder-workspace/Sources/GDExtension/include/gdextension_interface.h:428:2: error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
426 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_FLOAT,
427 | GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE,
428 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16,
| `- error: 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16' from module 'GDExtension' is not present in definition of 'GDExtensionClassMethodArgumentMetadata' in module 'libgodot'
429 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32,
430 | } GDExtensionClassMethodArgumentMetadata;
/Users/admin/builder/spi-builder-workspace/.build/artifacts/spi-builder-workspace/libgodot_tests/libgodot.xcframework/macos-arm64_x86_64/Headers/gdextension_interface.h:378:9: note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16'
376 | } GDExtensionClassMethodFlags;
377 |
378 | typedef enum {
| `- note: definition has no member 'GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16'
379 | GDEXTENSION_METHOD_ARGUMENT_METADATA_NONE,
380 | GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_INT8,
BUILD FAILURE 6.1 macosSpm