Build Information
Failed to build SwiftGodot, reference main (9687f0
), with Swift 6.1 for macOS (SPM) on 2 Jun 2025 05:14:30 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
| |- warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEnumMethodMember' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:16:5: warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
| |- warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxTypeName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:18:5: warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
| |- warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEmptyLeading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:20:5: warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
| |- warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxUrl' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | // If the string contains a ".", it will return a pair
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:89:19: warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
87 | }
88 | }
89 | for ed in jsonApi.globalEnums {
| `- warning: main actor-isolated let 'jsonApi' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
90 | for ev in ed.values {
91 | if ev.name == txt {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:66:5: note: let declared here
64 |
65 | let jsonData = try! Data(url: URL(fileURLWithPath: jsonFile))
66 | let jsonApi = try! JSONDecoder().decode(JGodotExtensionAPI.self, from: jsonData)
| `- note: let declared here
67 |
68 | func dropMatchingPrefix(_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:107:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
105 | let (type, name) = splitAtLastDot(str: txt)
106 | if type != "" {
107 | if let ldef = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
108 | if let r = lookInDef(def: ldef, match: name, local: false) {
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:111:34: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
110 | }
111 | } else if let ldef = builtinMap[type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
112 | if let r = lookInDef(def: ldef, match: name, local: false) {
113 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:122:5: note: var declared here
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
123 |
124 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:169:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
167 | var args = ""
168 | if let type {
169 | if let m = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
170 | if let method = findMethod (name: member, on: m) {
171 | args = assembleArgs (method, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:173:31: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
171 | args = assembleArgs (method, method.arguments)
172 | }
173 | } else if let m = builtinMap [type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
174 | if let method = findMethod (name: member, on: m) {
175 | args = assembleArgs(nil, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:122:5: note: var declared here
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
123 |
124 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:23:22: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
10 |
11 | // The name of the form 'bitfield::'
12 | func findEnumDef (name: String) -> JGodotGlobalEnumElement? {
| `- note: add '@MainActor' to make global function 'findEnumDef(name:)' part of global actor 'MainActor'
13 | guard name.starts(with: "bitfield::") else {
14 | return nil
:
21 | }
22 | let type = full [full.startIndex..<split]
23 | guard let cdef = classMap [String (type)] else {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
24 | print ("Could not find class \(type) for \(name)")
25 | return nil
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:139:13: error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
43 | ]
44 |
45 | func generateEnums (_ p: Printer, cdef: JClassInfo?, values: [JGodotGlobalEnumElement], prefix: String?) {
| `- note: add '@MainActor' to make global function 'generateEnums(_:cdef:values:prefix:)' part of global actor 'MainActor'
46 | for enumDef in values {
47 | let isBitField = enumDef.isBitfield ?? false
:
137 | }
138 | if let prefix {
139 | globalEnums [prefix + enumDef.name] = enumDef
| `- error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
140 | }
141 | }
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:88:5: note: mutation of this var is only permitted within the actor
86 | }
87 |
88 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: mutation of this var is only permitted within the actor
89 |
90 | // Maps from a the class name to its definition
[255/262] 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:66:5: note: let declared here
64 |
65 | let jsonData = try! Data(url: URL(fileURLWithPath: jsonFile))
66 | let jsonApi = try! JSONDecoder().decode(JGodotExtensionAPI.self, from: jsonData)
| `- note: let declared here
67 |
68 | func dropMatchingPrefix(_ enumName: String, _ enumKey: String) -> String {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:107:27: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
105 | let (type, name) = splitAtLastDot(str: txt)
106 | if type != "" {
107 | if let ldef = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
108 | if let r = lookInDef(def: ldef, match: name, local: false) {
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:111:34: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
46 | // }
47 |
48 | func lookupConstant (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'lookupConstant' part of global actor 'MainActor'
49 | func lookInDef (def: JClassInfo, match: String, local: Bool) -> String? {
50 | // TODO: for builtins, we wont have a cdef
:
109 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
110 | }
111 | } else if let ldef = builtinMap[type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
112 | if let r = lookInDef(def: ldef, match: name, local: false) {
113 | return "``\(getGodotType(SimpleType (type: type)) + "/" + r)``"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:122:5: note: var declared here
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
123 |
124 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:169:24: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
167 | var args = ""
168 | if let type {
169 | if let m = classMap [type] {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
170 | if let method = findMethod (name: member, on: m) {
171 | args = assembleArgs (method, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:173:31: error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
147 | }
148 |
149 | func convertMethod (_ txt: String.SubSequence) -> String {
| `- note: add '@MainActor' to make local function 'convertMethod' part of global actor 'MainActor'
150 | if txt.starts(with: "@") {
151 | // TODO, examples:
:
171 | args = assembleArgs (method, method.arguments)
172 | }
173 | } else if let m = builtinMap [type] {
| `- error: main actor-isolated var 'builtinMap' can not be referenced from a nonisolated context
174 | if let method = findMethod (name: member, on: m) {
175 | args = assembleArgs(nil, method.arguments)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:122:5: note: var declared here
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
| `- note: var declared here
123 |
124 | for x in jsonApi.builtinClasses {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:23:22: error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
10 |
11 | // The name of the form 'bitfield::'
12 | func findEnumDef (name: String) -> JGodotGlobalEnumElement? {
| `- note: add '@MainActor' to make global function 'findEnumDef(name:)' part of global actor 'MainActor'
13 | guard name.starts(with: "bitfield::") else {
14 | return nil
:
21 | }
22 | let type = full [full.startIndex..<split]
23 | guard let cdef = classMap [String (type)] else {
| `- error: main actor-isolated var 'classMap' can not be referenced from a nonisolated context
24 | print ("Could not find class \(type) for \(name)")
25 | return nil
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:91:5: note: var declared here
89 |
90 | // Maps from a the class name to its definition
91 | var classMap: [String: JGodotExtensionAPIClass] = [:]
| `- note: var declared here
92 |
93 | // Tracks whether a Godot type has subclasses, we want to use this
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Enums.swift:139:13: error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
43 | ]
44 |
45 | func generateEnums (_ p: Printer, cdef: JClassInfo?, values: [JGodotGlobalEnumElement], prefix: String?) {
| `- note: add '@MainActor' to make global function 'generateEnums(_:cdef:values:prefix:)' part of global actor 'MainActor'
46 | for enumDef in values {
47 | let isBitField = enumDef.isBitfield ?? false
:
137 | }
138 | if let prefix {
139 | globalEnums [prefix + enumDef.name] = enumDef
| `- error: main actor-isolated var 'globalEnums' can not be mutated from a nonisolated context
140 | }
141 | }
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:88:5: note: mutation of this var is only permitted within the actor
86 | }
87 |
88 | var globalEnums: [String: JGodotGlobalEnumElement] = [:]
| `- note: mutation of this var is only permitted within the actor
89 |
90 | // Maps from a the class name to its definition
[256/262] Compiling Generator main.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:120:41: error: main actor-isolated var 'structTypes' can not be referenced from a nonisolated context
104 | }
105 |
106 | private var structTypes: Set<String> = [
| `- note: var declared here
107 | "const void*",
108 | "AudioFrame*",
:
118 | /// - parameter type: A type name as found in `extension_api.json`.
119 | /// - returns: True if the type is represented in Swift as simple `struct` with fields (or as a built-in Swift type), not wrapping a handle (pointer) to a native Godot object.
120 | func isStruct(_ type: String) -> Bool { structTypes.contains(type) }
| | `- error: main actor-isolated var 'structTypes' can not be referenced from a nonisolated context
| `- note: add '@MainActor' to make global function 'isStruct' part of global actor 'MainActor'
121 |
122 | var builtinMap: [String: JGodotBuiltinClass] = [:]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:170:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
168 | struct Generator {
169 | func run() async throws {
170 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:172:58: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
170 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
1 | import ExtensionApi
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ExtensionApi'
2 | // main.swift
3 | // SwiftGodot/Generator
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:173:46: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
175 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:174:39: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
175 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
176 |
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:175:39: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
175 | await generateClasses(values: jsonApi.classes, outputDir: generatedDir)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
176 |
177 | generateVariantGodotInterface(coreDefPrinter)
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:179:58: warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
177 | generateVariantGodotInterface(coreDefPrinter)
178 | generateCtorPointers(coreDefPrinter)
179 | generateNativeStructures(coreDefPrinter, values: jsonApi.nativeStructures)
| `- warning: non-sendable type 'JGodotExtensionAPI' of let 'jsonApi' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
180 |
181 | if let generatedBuiltinDir {
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionApi/ApiJsonModel.swift:9:15: note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
7 |
8 | // MARK: - JGodotExtensionAPI
9 | public struct JGodotExtensionAPI: Codable {
| `- note: struct 'JGodotExtensionAPI' does not conform to the 'Sendable' protocol
10 | public let header: JGodotHeader
11 | public let builtinClassSizes: [JGodotBuiltinClassSize]
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:172:9: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
170 | let coreDefPrinter = await PrinterFactory.shared.initPrinter("core-defs", withPreamble: true)
171 | generateUnsafePointerHelpers(coreDefPrinter)
172 | generateEnums(coreDefPrinter, cdef: nil, values: jsonApi.globalEnums, prefix: "")
| | `- note: property access is 'async'
| `- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
173 | await generateBuiltinClasses(values: jsonApi.builtinClasses, outputDir: generatedBuiltinDir)
174 | await generateUtility(values: jsonApi.utilityFunctions, outputDir: generatedBuiltinDir)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:179:9: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
177 | generateVariantGodotInterface(coreDefPrinter)
178 | generateCtorPointers(coreDefPrinter)
179 | generateNativeStructures(coreDefPrinter, values: jsonApi.nativeStructures)
| | `- note: property access is 'async'
| `- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
180 |
181 | if let generatedBuiltinDir {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:185:12: error: expression is 'async' but is not marked with 'await'
183 | }
184 |
185 | if combineOutput {
| |- error: expression is 'async' but is not marked with 'await'
| `- note: property access is 'async'
186 | await PrinterFactory.shared.saveMultiplexed(outputDir)
187 | }
[257/262] Emitting module Generator
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:462:5: warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
460 | var skipList = Set<String>()
461 | #else
462 | var okList = Set<String>()
| |- warning: var 'okList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'okList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'okList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | var skipList = Set<String>()
464 | #endif
/Users/admin/builder/spi-builder-workspace/Generator/Generator/ClassGen.swift:463:5: warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
461 | #else
462 | var okList = Set<String>()
463 | var skipList = Set<String>()
| |- warning: var 'skipList' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'skipList' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'skipList' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
464 | #endif
465 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:12:5: warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | @available(macOS 13.0, iOS 16.0, *)
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
| |- warning: let 'rxConstantParam' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxConstantParam' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:14:5: warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
12 | let rxConstantParam: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(constant|param) ([\\w\\._@]+)\\]")
13 | @available(macOS 13.0, iOS 16.0, *)
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
| |- warning: let 'rxEnumMethodMember' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEnumMethodMember' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:16:5: warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
14 | let rxEnumMethodMember: Regex<(Substring,Substring,Substring)> = try! Regex ("\\[(enum|method|member) ([\\w\\.@_/]+)\\]")
15 | @available(macOS 13.0, iOS 16.0, *)
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
| |- warning: let 'rxTypeName' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxTypeName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:18:5: warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
16 | let rxTypeName: Regex<(Substring, Substring)> = try! Regex ("\\[([A-Z]\\w+)\\]")
17 | @available(macOS 13.0, iOS 16.0, *)
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
| |- warning: let 'rxEmptyLeading' is not concurrency-safe because non-'Sendable' type 'Regex<Substring>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxEmptyLeading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/DocModel.swift:20:5: warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
18 | let rxEmptyLeading: Regex<Substring> = try! Regex ("\\s+")
19 | @available(macOS 13.0, iOS 16.0, *)
20 | let rxUrl: Regex<(Substring,Substring)> = try! Regex ("\\[url=(.*?)\\]")
| |- warning: let 'rxUrl' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, Substring)>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rxUrl' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | // If the string contains a ".", it will return a pair
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
| `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 | public var regex: Regex<Output> { get }
4 | @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:98:5: warning: var 'core_types' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
96 | }
97 |
98 | var core_types = [
| |- warning: var 'core_types' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'core_types' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'core_types' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 | "String",
100 | "Vector2",
/Users/admin/builder/spi-builder-workspace/Generator/Generator/TypeHelpers.swift:243:5: warning: var 'mapStringToSwift' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
241 | }
242 |
243 | var mapStringToSwift = true
| |- warning: var 'mapStringToSwift' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'mapStringToSwift' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'mapStringToSwift' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |
245 | /// Given a type definition with its metadata, and the context where the type is being
[258/262] Compiling Generator Arguments.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Arguments.swift:201:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
189 | }
190 |
191 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
192 | var argref: String
193 | var optstorage: String
:
199 | optstorage = ".content"
200 | } else {
201 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
202 | optstorage = ".content"
203 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:832:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
830 | storedMembers = bc.members
831 | } else {
832 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
833 | storedMembers = memberOffsets.compactMap({ m in
834 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:140:5: note: var declared here
138 | }
139 | }
140 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
141 | for mo in jsonApi.builtinClassMemberOffsets {
142 | if mo.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:1172:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1170 | default:
1171 | // printer for class itself
1172 | let p: Printer = await PrinterFactory.shared.initPrinter(bc.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1173 |
1174 | mapStringToSwift = bc.name != "String"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
[259/262] Compiling Generator BuiltinGen.swift
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Arguments.swift:201:16: error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
189 | }
190 |
191 | func getArgRef (arg: JGodotArgument) -> String {
| `- note: add '@MainActor' to make global function 'getArgRef(arg:)' part of global actor 'MainActor'
192 | var argref: String
193 | var optstorage: String
:
199 | optstorage = ".content"
200 | } else {
201 | if builtinSizes [arg.type] != nil && arg.type != "Object" {
| `- error: main actor-isolated var 'builtinSizes' can not be referenced from a nonisolated context
202 | optstorage = ".content"
203 | } else {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:132:5: note: var declared here
130 |
131 | let buildConfiguration: String = "float_64"
132 | var builtinSizes: [String: Int] = [:]
| `- note: var declared here
133 | for cs in jsonApi.builtinClassSizes {
134 | if cs.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:601:5: warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
599 | case isClass
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
| |- warning: var 'builtinGodotTypeNames' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinGodotTypeNames' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinGodotTypeNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
602 | var builtinClassStorage: [String:String] = [:]
603 |
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:602:5: warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
600 | }
601 | var builtinGodotTypeNames: [String:BKind] = ["Variant": .isClass]
602 | var builtinClassStorage: [String:String] = [:]
| |- warning: var 'builtinClassStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'builtinClassStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'builtinClassStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
603 |
604 | func generateBuiltinClasses (values: [JGodotBuiltinClass], outputDir: String?) async {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:832:59: error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
830 | storedMembers = bc.members
831 | } else {
832 | if kind == .isStruct, let memberOffsets = builtinMemberOffsets [bc.name] {
| `- error: main actor-isolated var 'builtinMemberOffsets' can not be referenced from a nonisolated context
833 | storedMembers = memberOffsets.compactMap({ m in
834 | return bc.members?.first(where: { $0.name == m.member })
/Users/admin/builder/spi-builder-workspace/Generator/Generator/main.swift:140:5: note: var declared here
138 | }
139 | }
140 | var builtinMemberOffsets: [String: [JGodotMember]] = [:]
| `- note: var declared here
141 | for mo in jsonApi.builtinClassMemberOffsets {
142 | if mo.buildConfiguration == buildConfiguration {
/Users/admin/builder/spi-builder-workspace/Generator/Generator/BuiltinGen.swift:1172:58: warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1170 | default:
1171 | // printer for class itself
1172 | let p: Printer = await PrinterFactory.shared.initPrinter(bc.name, withPreamble: true)
| `- warning: non-sendable result type 'Printer' cannot be sent from actor-isolated context in call to instance method 'initPrinter(_:withPreamble:)'; this is an error in the Swift 6 language mode
1173 |
1174 | mapStringToSwift = bc.name != "String"
/Users/admin/builder/spi-builder-workspace/Generator/Generator/Printer.swift:10:7: note: class 'Printer' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | class Printer {
| `- note: class 'Printer' does not conform to the 'Sendable' protocol
11 | let name: String
12 | // Where we accumulate our output for the p/b routines
[1/1] Compiling plugin EntryPointGeneratorPlugin
[2/2] Compiling plugin CodeGeneratorPlugin
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
[5/5] Compiling plugin GenerateManual
Building for debugging...
[5/82] Write Generator-entitlement.plist
[5/82] Write Generator-tool-entitlement.plist
[5/82] Write sources
[12/82] Copying libgodot.dylib
[12/82] Write sources
[26/82] Copying extension_api.json
[26/82] Write sources
[28/82] Copying extension_api.json
[28/82] Write sources
[41/82] Write EntryPointGenerator-tool-entitlement.plist
[41/82] Write sources
[42/82] Write EntryPointGenerator-entitlement.plist
[49/82] Write sources
[51/82] Compiling _SwiftSyntaxCShims dummy.c
[53/82] Write swift-version-2F0A5646E1D333AE.txt
[54/82] Compiling GDExtension GDExtensionSupport.c
[57/96] 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
[58/96] 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
[59/96] 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/96] Compiling SwiftSyntax509 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[61/96] 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/96] 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
[63/164] Emitting module ExtensionApiJson
[65/164] Compiling ExtensionApiJson resource_bundle_accessor.swift
[66/164] Compiling ExtensionApiJson ExtensionApiJson.swift
[68/164] Compiling ExtensionApiJson resource_bundle_accessor.swift
[69/164] Emitting module ArgumentParserToolInfo
[70/164] Compiling ArgumentParserToolInfo ToolInfo.swift
[71/215] 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
[72/215] 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/216] 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
[74/216] Compiling ArgumentParser NameSpecification.swift
[75/216] Compiling ArgumentParser Option.swift
[76/216] Compiling ArgumentParser OptionGroup.swift
[77/216] Compiling ArgumentParser AsyncParsableCommand.swift
[78/220] Emitting module ArgumentParser
[79/220] 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 | }
[80/220] 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
[81/220] Emitting module EntryPointGenerator
[82/220] 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
[83/220] 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
[84/220] 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
[85/220] Compiling SwiftOperators Operator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[86/220] Emitting module SwiftOperators
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<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
[87/220] 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 |
[88/220] Compiling ExtensionApi ApiJsonModel+Extra.swift
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] Emitting module SwiftSyntax510
[4/14] Compiling SwiftSyntax510 Empty.swift
[5/14] Compiling SwiftSyntax509 Empty.swift
[6/14] Emitting module SwiftSyntax509
[7/14] Emitting module SwiftSyntax600
[8/14] Compiling SwiftSyntax600 Empty.swift
[9/14] Compiling ExtensionApi ApiJsonModel+Extra.swift
[10/79] Compiling ExtensionApi ApiJsonModel.swift
[11/79] Emitting module ExtensionApi
[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 Identifier.swift
[28/86] Compiling SwiftSyntax MemoryLayout.swift
[29/86] Compiling SwiftSyntax MissingNodeInitializers.swift
[30/86] Compiling SwiftSyntax RawSyntax.swift
[31/86] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[32/86] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[33/86] Compiling SwiftSyntax RawSyntaxTokenView.swift
[34/86] Emitting module SwiftSyntax
[35/86] Compiling SwiftSyntax SyntaxCollections.swift
[36/86] Compiling SwiftSyntax SyntaxEnum.swift
[37/86] Compiling SwiftSyntax SyntaxKind.swift
[38/86] Compiling SwiftSyntax SyntaxRewriter.swift
[39/86] Compiling SwiftSyntax SyntaxTraits.swift
[40/86] Compiling SwiftSyntax SyntaxVisitor.swift
[41/86] Compiling SwiftSyntax TokenKind.swift
[42/86] Compiling SwiftSyntax SourceEdit.swift
[43/86] Compiling SwiftSyntax SourceLength.swift
[44/86] Compiling SwiftSyntax SourceLocation.swift
[45/86] Compiling SwiftSyntax SourcePresence.swift
[46/86] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[47/86] Compiling SwiftSyntax Syntax.swift
[48/86] Compiling SwiftSyntax SyntaxArena.swift
[49/86] Compiling SwiftSyntax SyntaxNodesD.swift
[50/86] Compiling SwiftSyntax SyntaxNodesEF.swift
[51/86] Compiling SwiftSyntax SyntaxNodesGHI.swift
[52/86] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[53/86] Compiling SwiftSyntax SyntaxNodesOP.swift
[54/86] Compiling SwiftSyntax SyntaxNodesQRS.swift
[55/86] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[56/86] Compiling SwiftSyntax Tokens.swift
[57/86] Compiling SwiftSyntax TriviaPieces.swift
[58/86] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[59/86] Compiling SwiftSyntax RawSyntaxNodesC.swift
[60/86] Compiling SwiftSyntax RawSyntaxNodesD.swift
[61/86] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[62/86] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[63/86] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[64/86] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[65/86] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[66/86] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[67/86] Compiling SwiftSyntax RawSyntaxValidation.swift
[68/86] Compiling SwiftSyntax SyntaxNodesAB.swift
[69/86] Compiling SwiftSyntax SyntaxNodesC.swift
[70/86] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[71/86] Compiling SwiftSyntax SyntaxChildren.swift
[72/86] Compiling SwiftSyntax SyntaxCollection.swift
[73/86] Compiling SwiftSyntax SyntaxHashable.swift
[74/86] Compiling SwiftSyntax SyntaxIdentifier.swift
[75/86] Compiling SwiftSyntax SyntaxNodeFactory.swift
[76/86] Compiling SwiftSyntax SyntaxNodeStructure.swift
[77/86] Compiling SwiftSyntax Utils.swift
[78/86] Compiling SwiftSyntax ChildNameForKeyPath.swift
[79/86] Compiling SwiftSyntax Keyword.swift
[80/86] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[81/86] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[82/86] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[83/86] Compiling SwiftSyntax SyntaxBaseNodes.swift
[84/144] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[85/144] Compiling SwiftDiagnostics Message.swift
[86/145] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[87/145] Compiling SwiftDiagnostics Note.swift
[88/145] Compiling SwiftDiagnostics FixIt.swift
[89/145] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[90/145] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[91/145] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[92/145] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[93/145] Compiling SwiftDiagnostics Diagnostic.swift
[94/145] Compiling SwiftDiagnostics Convenience.swift
[95/145] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[96/145] Emitting module SwiftDiagnostics
[97/145] Compiling SwiftBasicFormat InferIndentation.swift
[98/145] Compiling SwiftBasicFormat Syntax+Extensions.swift
[99/145] Emitting module SwiftBasicFormat
[100/145] Compiling SwiftBasicFormat BasicFormat.swift
[101/145] Compiling SwiftParser TokenConsumer.swift
[102/145] Compiling SwiftParser TokenPrecedence.swift
[103/145] Compiling SwiftParser TokenSpec.swift
[104/145] Compiling SwiftParser TokenSpecSet.swift
[105/145] Compiling SwiftParser TopLevel.swift
[106/145] Compiling SwiftParser TriviaParser.swift
[107/145] Compiling SwiftParser Types.swift
[108/145] Compiling SwiftParser ExperimentalFeatures.swift
[109/149] Compiling SwiftParser Nominals.swift
[110/149] Compiling SwiftParser Parameters.swift
[111/149] Compiling SwiftParser ParseSourceFile.swift
[112/149] Compiling SwiftParser Parser.swift
[113/149] Compiling SwiftParser Patterns.swift
[114/149] Compiling SwiftParser Directives.swift
[115/149] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[116/149] Compiling SwiftParser Expressions.swift
[117/149] Compiling SwiftParser IncrementalParseTransition.swift
[118/149] Compiling SwiftParser IsValidIdentifier.swift
[119/149] Emitting module SwiftParser
[120/149] Compiling SwiftParser Attributes.swift
[121/149] Compiling SwiftParser Availability.swift
[122/149] Compiling SwiftParser CharacterInfo.swift
[123/149] Compiling SwiftParser CollectionNodes+Parsable.swift
[124/149] Compiling SwiftParser Declarations.swift
[125/149] Compiling SwiftParser UnicodeScalarExtensions.swift
[126/149] Compiling SwiftParser Lookahead.swift
[127/149] Compiling SwiftParser LoopProgressCondition.swift
[128/149] Compiling SwiftParser Modifiers.swift
[129/149] Compiling SwiftParser Names.swift
[130/149] Compiling SwiftParser StringLiterals.swift
[131/149] Compiling SwiftParser SwiftParserCompatibility.swift
[132/149] Compiling SwiftParser SwiftVersion.swift
[133/149] Compiling SwiftParser SyntaxUtils.swift
[134/149] Compiling SwiftParser Cursor.swift
[135/149] Compiling SwiftParser Lexeme.swift
[136/149] Compiling SwiftParser LexemeSequence.swift
[137/149] Compiling SwiftParser Lexer.swift
[138/149] Compiling SwiftParser RegexLiteralLexer.swift
[139/149] Compiling SwiftParser Recovery.swift
[140/149] Compiling SwiftParser Specifiers.swift
[141/149] Compiling SwiftParser Statements.swift
[142/149] Compiling SwiftParser StringLiteralRepresentedLiteralValue.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 ChildNameForDiagnostics.swift
[148/162] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[149/163] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[150/163] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[151/163] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[152/163] Emitting module SwiftParserDiagnostics
[153/163] Compiling SwiftParserDiagnostics Utils.swift
[154/163] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[155/163] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[156/163] Compiling SwiftParserDiagnostics PresenceUtils.swift
[157/163] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[158/163] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[159/163] Compiling SwiftParserDiagnostics MissingNodesError.swift
[160/163] Compiling SwiftParserDiagnostics MissingTokenError.swift
[161/178] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[162/178] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[163/178] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[164/178] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[165/178] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[166/178] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[167/178] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[168/178] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[169/179] Compiling SwiftSyntaxBuilder Indenter.swift
[170/179] Compiling SwiftSyntaxBuilder ListBuilder.swift
[171/179] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[172/179] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.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/193] Compiling Generator UtilityGen.swift
[178/193] Compiling Generator UnsafePointerHelpers.swift
[179/193] Compiling Generator StringOperations.swift
[180/193] Compiling Generator TypeHelpers.swift
[181/194] Compiling Generator DocModel.swift
[182/194] Compiling Generator Enums.swift
[183/194] Compiling Generator Printer.swift
[184/194] Compiling Generator MethodGen.swift
[185/194] Compiling Generator NativeStructures.swift
[186/194] Compiling Generator ClassGen.swift
[187/194] Compiling Generator Data.swift
[188/194] Compiling Generator main.swift
[189/194] Compiling Generator Arguments.swift
[190/194] Compiling Generator BuiltinGen.swift
[191/194] Emitting module Generator
[191/194] Write Objects.LinkFileList
[192/194] Linking Generator-tool
[193/194] Applying Generator-tool
[194/198] Write swift-version-2F0A5646E1D333AE.txt
[196/200] Compiling ArgumentParserToolInfo ToolInfo.swift
[197/200] Emitting module ArgumentParserToolInfo
[198/239] Emitting module ArgumentParser
[199/243] Compiling ArgumentParser ParsableArguments.swift
[200/243] Compiling ArgumentParser ParsableArgumentsValidation.swift
[201/243] Compiling ArgumentParser ParsableCommand.swift
[202/243] Compiling ArgumentParser ArgumentDecoder.swift
[203/243] Compiling ArgumentParser BashCompletionsGenerator.swift
[204/243] Compiling ArgumentParser CompletionsGenerator.swift
[205/243] Compiling ArgumentParser FishCompletionsGenerator.swift
[206/243] Compiling ArgumentParser ZshCompletionsGenerator.swift
[207/243] Compiling ArgumentParser Argument.swift
[208/243] Compiling ArgumentParser ParserError.swift
[209/243] Compiling ArgumentParser SplitArguments.swift
[210/243] Compiling ArgumentParser DumpHelpGenerator.swift
[211/243] Compiling ArgumentParser HelpCommand.swift
[212/243] Compiling ArgumentParser HelpGenerator.swift
[213/243] Compiling ArgumentParser MessageInfo.swift
[214/243] Compiling ArgumentParser UsageGenerator.swift
[215/243] Compiling ArgumentParser CollectionExtensions.swift
[216/243] Compiling ArgumentParser Platform.swift
[217/243] Compiling ArgumentParser SequenceExtensions.swift
[218/243] Compiling ArgumentParser StringExtensions.swift
[219/243] Compiling ArgumentParser Tree.swift
[220/243] Compiling ArgumentParser InputOrigin.swift
[221/243] Compiling ArgumentParser Name.swift
[222/243] Compiling ArgumentParser Parsed.swift
[223/243] Compiling ArgumentParser ParsedValues.swift
[224/243] Compiling ArgumentParser NameSpecification.swift
[225/243] Compiling ArgumentParser Option.swift
[226/243] Compiling ArgumentParser OptionGroup.swift
[227/243] Compiling ArgumentParser AsyncParsableCommand.swift
[228/243] Compiling ArgumentParser CommandConfiguration.swift
[229/243] Compiling ArgumentParser CommandGroup.swift
[230/243] Compiling ArgumentParser EnumerableFlag.swift
[231/243] Compiling ArgumentParser ExpressibleByArgument.swift
[232/243] Compiling ArgumentParser ArgumentDefinition.swift
[233/243] Compiling ArgumentParser ArgumentSet.swift
[234/243] Compiling ArgumentParser CommandParser.swift
[235/243] Compiling ArgumentParser InputKey.swift
[236/243] Compiling ArgumentParser ArgumentHelp.swift
[237/243] Compiling ArgumentParser ArgumentVisibility.swift
[238/243] Compiling ArgumentParser CompletionKind.swift
[239/243] Compiling ArgumentParser Errors.swift
[240/243] Compiling ArgumentParser Flag.swift
[241/246] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[242/246] Compiling EntryPointGenerator EntryPointGenerator.swift
[243/246] Emitting module EntryPointGenerator
[243/246] Write Objects.LinkFileList
[244/246] Linking EntryPointGenerator-tool
[245/246] Applying EntryPointGenerator-tool
[0/1] Planning build
[1/1] Compiling plugin EntryPointGeneratorPlugin
[2/2] Compiling plugin CodeGeneratorPlugin
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
[5/5] Compiling plugin GenerateManual
Building for debugging...
[5/33] Compiling _SwiftSyntaxCShims dummy.c
[6/33] Write swift-version-2F0A5646E1D333AE.txt
[8/48] Compiling SwiftSyntax509 Empty.swift
[9/48] Emitting module SwiftSyntax510
[10/48] Compiling SwiftSyntax510 Empty.swift
[11/48] Emitting module SwiftSyntax509
[12/48] Emitting module SwiftSyntax600
[13/48] Compiling SwiftSyntax600 Empty.swift
[14/50] Compiling ExtensionApiJson ExtensionApiJson.swift
[15/50] Emitting module ExtensionApiJson
[16/50] Compiling ExtensionApiJson resource_bundle_accessor.swift
[17/50] Emitting module ExtensionApiJson
[18/50] Compiling ExtensionApiJson ExtensionApiJson.swift
[19/50] Compiling ExtensionApiJson resource_bundle_accessor.swift
[20/115] Emitting module ArgumentParserToolInfo
[21/115] Compiling ArgumentParserToolInfo ToolInfo.swift
[21/164] Write Objects.LinkFileList
[23/164] Compiling ArgumentParser InputOrigin.swift
[24/164] Compiling ArgumentParser Name.swift
[25/164] Compiling ArgumentParser Parsed.swift
[26/164] Compiling ArgumentParser ParsedValues.swift
[27/168] Emitting module ArgumentParser
[28/168] Compiling SwiftOperators PrecedenceGroup.swift
[29/168] Compiling SwiftOperators PrecedenceGraph.swift
[30/168] Compiling SwiftOperators OperatorTable.swift
[31/168] Compiling SwiftOperators OperatorTable+Semantics.swift
[32/169] Compiling ExtensionApi ApiJsonModel+Extra.swift
[33/169] Emitting module ExtensionApi
[34/169] Compiling ExtensionApi ApiJsonModel.swift
[35/187] Compiling SwiftSyntax SyntaxProtocol.swift
[36/187] Compiling SwiftSyntax SyntaxText.swift
[37/187] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[38/187] Compiling SwiftSyntax TokenDiagnostic.swift
[39/187] Compiling SwiftSyntax TokenSequence.swift
[40/187] Compiling SwiftSyntax TokenSyntax.swift
[41/187] Compiling SwiftSyntax Trivia.swift
[42/194] Compiling SwiftOperators Operator.swift
[43/194] Compiling SwiftOperators OperatorTable+Defaults.swift
[44/194] Compiling SwiftOperators OperatorError.swift
[45/194] Compiling SwiftOperators OperatorError+Diagnostics.swift
[46/194] Emitting module SwiftOperators
[47/194] Compiling SwiftOperators OperatorTable+Folding.swift
[48/194] Compiling SwiftOperators SyntaxSynthesis.swift
[48/194] Write Objects.LinkFileList
[50/194] Compiling SwiftSyntaxMacros MemberMacro.swift
[51/194] Compiling SwiftSyntaxMacros PeerMacro.swift
[52/194] Compiling SwiftSyntaxMacros Macro.swift
[53/194] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[54/194] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[55/194] Compiling SwiftSyntaxMacros Macro+Format.swift
[56/194] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[57/194] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[58/194] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[59/194] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[60/194] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[61/194] Compiling SwiftSyntaxMacros AttachedMacro.swift
[62/194] Compiling SwiftSyntaxMacros BodyMacro.swift
[65/194] Compiling SwiftSyntaxMacros PreambleMacro.swift
[71/194] Compiling SwiftSyntaxMacros AccessorMacro.swift
[72/195] Emitting module SwiftSyntaxMacros
[73/195] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[74/195] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[75/195] Compiling ArgumentParser Platform.swift
[76/195] Compiling ArgumentParser SequenceExtensions.swift
[77/195] Compiling ArgumentParser StringExtensions.swift
[78/195] Compiling ArgumentParser Tree.swift
[83/195] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[84/195] Compiling ArgumentParser BashCompletionsGenerator.swift
[85/195] Compiling ArgumentParser CompletionsGenerator.swift
[86/195] Compiling ArgumentParser FishCompletionsGenerator.swift
[87/195] Compiling ArgumentParser ZshCompletionsGenerator.swift
[88/195] Compiling ArgumentParser Argument.swift
[89/195] Compiling ArgumentParser CommandConfiguration.swift
[90/195] Compiling ArgumentParser CommandGroup.swift
[91/195] Compiling ArgumentParser EnumerableFlag.swift
[92/195] Compiling ArgumentParser ExpressibleByArgument.swift
[93/195] Compiling ArgumentParser ArgumentHelp.swift
[94/195] Compiling ArgumentParser ArgumentVisibility.swift
[95/195] Compiling ArgumentParser CompletionKind.swift
[96/195] Compiling ArgumentParser Errors.swift
[97/195] Compiling ArgumentParser Flag.swift
[110/195] Compiling ArgumentParser ArgumentDefinition.swift
[111/195] Compiling ArgumentParser ArgumentSet.swift
[112/195] Compiling ArgumentParser CommandParser.swift
[113/195] Compiling ArgumentParser InputKey.swift
[113/205] Linking EntryPointGenerator-tool
[114/205] Applying EntryPointGenerator-tool
[116/205] Emitting module SwiftSyntaxMacroExpansion
Generated swift_entry_point, registering 3 classes, in EntryPoint.generated.swift.
[116/205] Generating Godot entry point
[117/205] Write sources
[118/205] Linking Generator-tool
[120/205] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[121/205] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[122/205] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[123/205] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[124/205] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[125/205] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[126/205] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[127/205] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[128/205] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[128/205] Applying Generator-tool
[130/217] Emitting module SwiftCompilerPluginMessageHandling
[131/217] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[132/217] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[133/217] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[134/217] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[135/217] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[136/217] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[137/217] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[138/217] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[139/217] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[140/217] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[141/217] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[142/218] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[143/220] Emitting module SwiftCompilerPlugin
[144/220] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[145/235] Compiling SwiftGodotMacroLibrary SwiftSyntaxExtensions.swift
[146/236] Compiling SwiftGodotMacroLibrary TextureLiteralMacro.swift
[146/236] Generating GeneratedSources
[149/236] Compiling SwiftGodotMacroLibrary CodePrinter.swift
[150/236] Compiling SwiftGodotMacroLibrary InitSwiftExtensionMacro.swift
[151/236] Compiling SwiftGodotMacroLibrary MacroExportGroup.swift
[152/236] Compiling SwiftGodotMacroLibrary MacroExportSubgroup.swift
[153/236] Compiling SwiftGodotMacroLibrary MacroCallable.swift
[154/236] Compiling SwiftGodotMacroLibrary MacroExport.swift
[155/236] Compiling SwiftGodotMacroLibrary MacroGodot.swift
[156/236] Compiling SwiftGodotMacroLibrary MacroSharedApi.swift
[157/236] Emitting module SwiftSyntax
[158/236] Compiling SwiftGodotMacroLibrary SignalMacro.swift
[161/236] Compiling SwiftGodotMacroLibrary SignalAttachmentMacro.swift
[162/236] Compiling SwiftGodotMacroLibrary NativeHandleDiscardingMacro.swift
[163/236] Compiling SwiftGodotMacroLibrary PickerNameProviderMacro.swift
[164/236] Compiling SwiftGodotMacroLibrary SceneTreeMacro.swift
[169/236] Emitting module SwiftGodotMacroLibrary
[171/236] Write sources
[173/236] Write Objects.LinkFileList
[181/236] Linking SwiftGodotMacroLibrary-tool
[183/688] Compiling SwiftGodot Variant.swift
[184/688] Compiling SwiftGodot AABB.swift
[185/688] Compiling SwiftGodot Array.swift
[186/688] Compiling SwiftGodot AnimationNodeAnimation.swift
[187/688] Compiling SwiftGodot AnimationNodeBlend2.swift
[188/688] Compiling SwiftGodot AnimationNodeBlend3.swift
[189/688] Compiling SwiftGodot AnimationNodeBlendSpace1D.swift
[190/688] Compiling SwiftGodot ColorExtensions.swift
[191/688] Compiling SwiftGodot Compat.swift
[192/688] Compiling SwiftGodot GDUtilityFunctions.swift
[193/688] Compiling SwiftGodot NodeExtensions.swift
[194/688] Compiling SwiftGodot PhysicsDirectSpaceState2D+IntersectRayResult.swift
[195/688] Compiling SwiftGodot PhysicsDirectSpaceState3D+IntersectRayResult.swift
[196/688] Compiling SwiftGodot RefCountedExtensions.swift
[197/688] Compiling SwiftGodot VariantArrayExtensions.swift
[198/688] Compiling SwiftGodot VariantDictionaryExtensions.swift
[199/688] Compiling SwiftGodot FastVariant.swift
[200/688] Compiling SwiftGodot GodotInterface.swift
[201/688] Compiling SwiftGodot MacroDefs.swift
[202/688] Compiling SwiftGodot MacroCallableWrapResult.swift
[203/688] Compiling SwiftGodot MacroExportInvokeGetter.swift
[204/688] Compiling SwiftGodot MacroExportInvokeSetter.swift
[205/688] Compiling SwiftGodot MacroGodotArgumentPropInfo.swift
[206/688] Compiling SwiftGodot MacroGodotPropertyPropInfo.swift
[207/688] Compiling SwiftGodot MacroGodotReturnValuePropInfo.swift
[208/688] Compiling SwiftGodot LinearInterpolation.swift
[209/688] Compiling SwiftGodot RotationConversion.swift
[210/688] Compiling SwiftGodot Snapped.swift
[211/688] Compiling SwiftGodot SwiftGodot.swift
[215/713] Compiling SwiftGodot AudioStreamPlaybackSynchronized.swift
[216/713] Compiling SwiftGodot AudioStreamPlayer.swift
[217/713] Compiling SwiftGodot AudioStreamPlayer2D.swift
[218/713] Compiling SwiftGodot AudioStreamPlayer3D.swift
[219/713] Compiling SwiftGodot AudioStreamPlaylist.swift
[220/713] Compiling SwiftGodot AudioStreamPolyphonic.swift
[221/713] Compiling SwiftGodot AudioStreamRandomizer.swift
[222/713] Compiling SwiftGodot AudioStreamSynchronized.swift
[223/713] Compiling SwiftGodot AudioStreamWAV.swift
[224/713] Compiling SwiftGodot BackBufferCopy.swift
[225/713] Compiling SwiftGodot BaseButton.swift
[226/713] Compiling SwiftGodot BaseMaterial3D.swift
[227/713] Compiling SwiftGodot BitMap.swift
[228/713] Compiling SwiftGodot Bone2D.swift
[229/713] Compiling SwiftGodot BoneAttachment3D.swift
[230/713] Compiling SwiftGodot BoneMap.swift
[231/713] Compiling SwiftGodot BoxContainer.swift
[232/713] Compiling SwiftGodot BoxMesh.swift
[233/713] Compiling SwiftGodot BoxOccluder3D.swift
[234/713] Compiling SwiftGodot BoxShape3D.swift
[235/713] Compiling SwiftGodot Button.swift
[236/713] Compiling SwiftGodot ButtonGroup.swift
[237/713] Compiling SwiftGodot CPUParticles2D.swift
[238/713] Compiling SwiftGodot CPUParticles3D.swift
[239/713] Compiling SwiftGodot CSGBox3D.swift
[240/713] Compiling SwiftGodot Transform2D.swift
[241/713] Compiling SwiftGodot Transform3D.swift
[242/713] Compiling SwiftGodot utility.swift
[243/713] Compiling SwiftGodot Vector2.swift
[244/713] Compiling SwiftGodot Vector2i.swift
[245/713] Compiling SwiftGodot Vector3.swift
[246/713] Compiling SwiftGodot Vector3i.swift
[247/713] Compiling SwiftGodot Vector4.swift
[248/713] Compiling SwiftGodot Vector4i.swift
[249/713] Compiling SwiftGodot AESContext.swift
[250/713] Compiling SwiftGodot AStar2D.swift
[251/713] Compiling SwiftGodot AStar3D.swift
[252/713] Compiling SwiftGodot AStarGrid2D.swift
[253/713] Compiling SwiftGodot AcceptDialog.swift
[254/713] Compiling SwiftGodot AnimatableBody2D.swift
[255/713] Compiling SwiftGodot AnimatableBody3D.swift
[256/713] Compiling SwiftGodot AnimatedSprite2D.swift
[257/713] Compiling SwiftGodot AnimatedSprite3D.swift
[258/713] Compiling SwiftGodot AnimatedTexture.swift
[259/713] Compiling SwiftGodot Animation.swift
[260/713] Compiling SwiftGodot AnimationLibrary.swift
[261/713] Compiling SwiftGodot AnimationMixer.swift
[262/713] Compiling SwiftGodot AnimationNode.swift
[263/713] Compiling SwiftGodot AnimationNodeAdd2.swift
[264/713] Compiling SwiftGodot AnimationNodeAdd3.swift
[265/763] Compiling SwiftGodot Arguments.swift
[266/763] Compiling SwiftGodot BuiltinConvertible.swift
[267/763] Compiling SwiftGodot ClassServices.swift
[268/763] Compiling SwiftGodot FastFunctionBridging.swift
[269/763] Compiling SwiftGodot FastStringName.swift
[270/763] Compiling SwiftGodot InspectableProperty.swift
[271/763] Compiling SwiftGodot NIOLock.swift
[272/763] Compiling SwiftGodot ObjectCollection.swift
[273/763] Compiling SwiftGodot ObjectExtensions.swift
[274/763] Compiling SwiftGodot Packed.swift
[275/763] Compiling SwiftGodot SignalProxy.swift
[276/763] Compiling SwiftGodot SignalRegistration.swift
[277/763] Compiling SwiftGodot SignalWithArguments.swift
[278/763] Compiling SwiftGodot StringExtensions.swift
[279/763] Compiling SwiftGodot TypedArray.swift
[280/763] Compiling SwiftGodot TypedDictionary.swift
[281/763] Compiling SwiftGodot VariantCollection.swift
[282/763] Compiling SwiftGodot VariantConvertible.swift
[283/763] Compiling SwiftGodot Various.swift
[284/763] Compiling SwiftGodot Wrapped.swift
[285/763] Compiling SwiftGodot EntryPoint.swift
[286/763] Compiling SwiftGodot Export.swift
[287/763] Compiling SwiftGodot Arithmetic.swift
[288/763] Compiling SwiftGodot CallableExtensions.swift
[289/763] Compiling SwiftGodot ClassInfoExtensions.swift
[315/813] Compiling SwiftGodot AnimationRootNode.swift
[316/813] Compiling SwiftGodot AnimationTree.swift
[317/813] Compiling SwiftGodot Area2D.swift
[318/813] Compiling SwiftGodot Area3D.swift
[319/813] Compiling SwiftGodot ArrayMesh.swift
[320/813] Compiling SwiftGodot ArrayOccluder3D.swift
[321/813] Compiling SwiftGodot AspectRatioContainer.swift
[322/813] Compiling SwiftGodot AnimationNodeStateMachineTransition.swift
[323/813] Compiling SwiftGodot AnimationNodeSub2.swift
[324/813] Compiling SwiftGodot AnimationNodeSync.swift
[325/813] Compiling SwiftGodot AnimationNodeTimeScale.swift
[326/813] Compiling SwiftGodot AnimationNodeTimeSeek.swift
[327/813] Compiling SwiftGodot AnimationNodeTransition.swift
[328/813] Compiling SwiftGodot AnimationPlayer.swift
[329/813] Compiling SwiftGodot AudioEffectPhaser.swift
[330/813] Compiling SwiftGodot AudioEffectPitchShift.swift
[331/813] Compiling SwiftGodot AudioEffectRecord.swift
[332/813] Compiling SwiftGodot AudioEffectReverb.swift
[333/813] Compiling SwiftGodot AudioEffectSpectrumAnalyzer.swift
[334/813] Compiling SwiftGodot AudioEffectSpectrumAnalyzerInstance.swift
[335/813] Compiling SwiftGodot AudioEffectStereoEnhance.swift
[336/813] Compiling SwiftGodot AnimationNodeBlendSpace2D.swift
[337/813] Compiling SwiftGodot AnimationNodeBlendTree.swift
[338/813] Compiling SwiftGodot AnimationNodeExtension.swift
[339/813] Compiling SwiftGodot AnimationNodeOneShot.swift
[340/813] Compiling SwiftGodot AnimationNodeOutput.swift
[341/813] Compiling SwiftGodot AnimationNodeStateMachine.swift
[342/813] Compiling SwiftGodot AnimationNodeStateMachinePlayback.swift
[350/813] Compiling SwiftGodot AudioListener2D.swift
[351/813] Compiling SwiftGodot AudioListener3D.swift
[352/813] Compiling SwiftGodot AudioSample.swift
[353/813] Compiling SwiftGodot AudioSamplePlayback.swift
[354/813] Compiling SwiftGodot AudioServer.swift
[355/813] Compiling SwiftGodot AudioStream.swift
[356/813] Compiling SwiftGodot AudioStreamGenerator.swift
[357/813] Compiling SwiftGodot AudioStreamGeneratorPlayback.swift
[358/813] Compiling SwiftGodot AudioStreamInteractive.swift
[359/813] Compiling SwiftGodot AudioStreamMP3.swift
[360/813] Compiling SwiftGodot AudioStreamMicrophone.swift
[361/813] Compiling SwiftGodot AudioStreamOggVorbis.swift
[362/813] Compiling SwiftGodot AudioStreamPlayback.swift
[363/813] Compiling SwiftGodot AudioStreamPlaybackInteractive.swift
[364/813] Compiling SwiftGodot AudioStreamPlaybackOggVorbis.swift
[365/813] Compiling SwiftGodot AudioStreamPlaybackPlaylist.swift
[366/813] Compiling SwiftGodot AudioStreamPlaybackPolyphonic.swift
[367/813] Compiling SwiftGodot AudioStreamPlaybackResampled.swift
[393/863] Compiling SwiftGodot CSGCombiner3D.swift
[394/863] Compiling SwiftGodot CSGCylinder3D.swift
[395/863] Compiling SwiftGodot CSGMesh3D.swift
[396/863] Compiling SwiftGodot CSGPolygon3D.swift
[397/863] Compiling SwiftGodot CSGPrimitive3D.swift
[398/863] Compiling SwiftGodot CSGShape3D.swift
[399/863] Compiling SwiftGodot CSGSphere3D.swift
[400/863] Compiling SwiftGodot CSGTorus3D.swift
[401/863] Compiling SwiftGodot CallbackTweener.swift
[402/863] Compiling SwiftGodot Camera2D.swift
[403/863] Compiling SwiftGodot Camera3D.swift
[404/863] Compiling SwiftGodot CameraAttributes.swift
[405/863] Compiling SwiftGodot CameraAttributesPhysical.swift
[406/863] Compiling SwiftGodot CameraAttributesPractical.swift
[407/863] Compiling SwiftGodot CameraFeed.swift
[408/863] Compiling SwiftGodot CameraServer.swift
[409/863] Compiling SwiftGodot CameraTexture.swift
[410/863] Compiling SwiftGodot CanvasGroup.swift
[411/863] Compiling SwiftGodot CanvasItem.swift
[412/863] Compiling SwiftGodot CanvasItemMaterial.swift
[413/863] Compiling SwiftGodot CanvasLayer.swift
[414/863] Compiling SwiftGodot CanvasModulate.swift
[415/863] Compiling SwiftGodot CanvasTexture.swift
[416/863] Compiling SwiftGodot CapsuleMesh.swift
[417/863] Compiling SwiftGodot CapsuleShape2D.swift
[425/946] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[426/946] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[427/946] Compiling SwiftBasicFormat InferIndentation.swift
[428/946] Emitting module SwiftBasicFormat
[429/946] Compiling SwiftDiagnostics FixIt.swift
[430/946] Compiling SwiftDiagnostics Message.swift
[431/946] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[432/946] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[433/947] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[434/947] Compiling SwiftDiagnostics Diagnostic.swift
[435/947] Compiling SwiftDiagnostics Convenience.swift
[436/947] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[437/947] Emitting module SwiftDiagnostics
[438/947] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[439/947] Compiling SwiftDiagnostics Note.swift
[440/947] Compiling SwiftGodot CompressedTexture2D.swift
[441/947] Compiling SwiftGodot CompressedTexture2DArray.swift
[442/947] Compiling SwiftGodot CompressedTexture3D.swift
[443/947] Compiling SwiftGodot CompressedTextureLayered.swift
[444/947] Compiling SwiftGodot ConcavePolygonShape2D.swift
[445/947] Compiling SwiftGodot ConcavePolygonShape3D.swift
[446/947] Compiling SwiftGodot ConeTwistJoint3D.swift
[447/947] Compiling SwiftGodot ConfigFile.swift
[448/947] Compiling SwiftGodot ConfirmationDialog.swift
[449/947] Compiling SwiftGodot Container.swift
[450/947] Compiling SwiftGodot Control.swift
[451/947] Compiling SwiftGodot ConvexPolygonShape2D.swift
[452/947] Compiling SwiftGodot ConvexPolygonShape3D.swift
[453/947] Compiling SwiftGodot Crypto.swift
[454/947] Compiling SwiftGodot CryptoKey.swift
[455/947] Compiling SwiftGodot Cubemap.swift
[456/947] Compiling SwiftGodot CubemapArray.swift
[457/947] Compiling SwiftGodot Curve.swift
[458/947] Compiling SwiftGodot Curve2D.swift
[459/947] Compiling SwiftGodot Curve3D.swift
[460/947] Compiling SwiftGodot CurveTexture.swift
[461/947] Compiling SwiftGodot CurveXYZTexture.swift
[462/947] Compiling SwiftGodot CylinderMesh.swift
[463/947] Compiling SwiftGodot CylinderShape3D.swift
[464/947] Compiling SwiftGodot DTLSServer.swift
[465/972] Compiling SwiftBasicFormat Syntax+Extensions.swift
[466/972] Compiling SwiftBasicFormat BasicFormat.swift
[467/972] Compiling SwiftParser StringLiterals.swift
[468/972] Compiling SwiftParser SwiftParserCompatibility.swift
[469/972] Compiling SwiftParser SwiftVersion.swift
[470/972] Compiling SwiftParser SyntaxUtils.swift
[471/972] Compiling SwiftParser TopLevel.swift
[472/972] Compiling SwiftParser TriviaParser.swift
[473/972] Compiling SwiftParser Types.swift
[474/972] Compiling SwiftParser ExperimentalFeatures.swift
[475/976] Emitting module SwiftParser
[476/976] Compiling SwiftParser TokenConsumer.swift
[477/976] Compiling SwiftParser TokenPrecedence.swift
[478/976] Compiling SwiftParser TokenSpec.swift
[479/976] Compiling SwiftParser TokenSpecSet.swift
[480/976] Compiling SwiftParser Directives.swift
[481/976] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[482/976] Compiling SwiftParser Expressions.swift
[483/976] Compiling SwiftParser IncrementalParseTransition.swift
[484/976] Compiling SwiftParser IsValidIdentifier.swift
[485/976] Compiling SwiftParser Attributes.swift
[486/976] Compiling SwiftParser Availability.swift
[487/976] Compiling SwiftParser CharacterInfo.swift
[488/976] Compiling SwiftParser CollectionNodes+Parsable.swift
[489/976] Compiling SwiftParser Declarations.swift
[490/976] Compiling SwiftParser Nominals.swift
[491/976] Compiling SwiftParser Parameters.swift
[492/976] Compiling SwiftParser ParseSourceFile.swift
[493/976] Compiling SwiftParser Parser.swift
[494/976] Compiling SwiftParser Patterns.swift
[495/976] Compiling SwiftParser Recovery.swift
[496/976] Compiling SwiftParser Specifiers.swift
[497/976] Compiling SwiftParser Statements.swift
[498/976] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[499/976] Compiling SwiftParser UnicodeScalarExtensions.swift
[500/976] Compiling SwiftParser Lookahead.swift
[501/976] Compiling SwiftParser LoopProgressCondition.swift
[502/976] Compiling SwiftParser Modifiers.swift
[503/976] Compiling SwiftParser Names.swift
[504/976] Compiling SwiftParser Cursor.swift
[505/976] Compiling SwiftParser Lexeme.swift
[506/976] Compiling SwiftParser LexemeSequence.swift
[507/976] Compiling SwiftParser Lexer.swift
[508/976] Compiling SwiftParser RegexLiteralLexer.swift
[584/1051] Compiling SwiftGodot CapsuleShape3D.swift
[585/1051] Compiling SwiftGodot CenterContainer.swift
[586/1051] Compiling SwiftGodot CharFXTransform.swift
[587/1051] Compiling SwiftGodot CharacterBody2D.swift
[588/1051] Compiling SwiftGodot CharacterBody3D.swift
[589/1051] Compiling SwiftGodot CheckBox.swift
[590/1051] Compiling SwiftGodot CheckButton.swift
[591/1051] Compiling SwiftGodot CircleShape2D.swift
[592/1051] Compiling SwiftGodot ClassDB.swift
[593/1051] Compiling SwiftGodot CodeEdit.swift
[594/1051] Compiling SwiftGodot CodeHighlighter.swift
[595/1051] Compiling SwiftGodot CollisionObject2D.swift
[596/1051] Compiling SwiftGodot CollisionObject3D.swift
[597/1051] Compiling SwiftGodot CollisionPolygon2D.swift
[598/1051] Compiling SwiftGodot CollisionPolygon3D.swift
[599/1051] Compiling SwiftGodot CollisionShape2D.swift
[600/1051] Compiling SwiftGodot CollisionShape3D.swift
[601/1051] Compiling SwiftGodot ColorPalette.swift
[602/1051] Compiling SwiftGodot ColorPicker.swift
[603/1051] Compiling SwiftGodot ColorPickerButton.swift
[604/1051] Compiling SwiftGodot ColorRect.swift
[605/1051] Compiling SwiftGodot Compositor.swift
[606/1051] Compiling SwiftGodot CompositorEffect.swift
[607/1051] Compiling SwiftGodot CompressedCubemap.swift
[608/1051] Compiling SwiftGodot CompressedCubemapArray.swift
[634/1101] Compiling SwiftParser IsLexerClassified.swift
[635/1101] Compiling SwiftParser LayoutNodes+Parsable.swift
[636/1101] Compiling SwiftParser Parser+TokenSpecSet.swift
[637/1101] Compiling SwiftParser TokenSpecStaticMembers.swift
[638/1117] Emitting module EntryPointGenerator
[639/1117] Compiling EntryPointGenerator GodotMacroSearchingVisitor.swift
[640/1117] Compiling EntryPointGenerator EntryPointGenerator.swift
[640/1117] Write Objects.LinkFileList
[642/1117] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[643/1117] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[644/1118] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[644/1118] Linking EntryPointGenerator
[646/1118] Compiling SwiftParserDiagnostics Utils.swift
[647/1118] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[648/1118] Compiling SwiftParserDiagnostics PresenceUtils.swift
[649/1118] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[650/1118] Emitting module SwiftParserDiagnostics
[651/1118] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[652/1118] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[653/1118] Compiling SwiftParserDiagnostics MissingNodesError.swift
[654/1118] Compiling SwiftParserDiagnostics MissingTokenError.swift
[655/1118] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[656/1118] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[656/1118] Applying EntryPointGenerator
[658/1133] Compiling SwiftGodot DampedSpringJoint2D.swift
[659/1133] Compiling SwiftGodot Decal.swift
[660/1133] Compiling SwiftGodot DirAccess.swift
[661/1133] Compiling SwiftGodot DirectionalLight2D.swift
[662/1133] Compiling SwiftGodot DirectionalLight3D.swift
[663/1133] Compiling SwiftGodot DisplayServer.swift
[664/1133] Compiling SwiftGodot DisplayServerEmbedded.swift
[665/1133] Compiling SwiftGodot ENetConnection.swift
[666/1133] Compiling SwiftGodot ENetMultiplayerPeer.swift
[667/1133] Compiling SwiftGodot ENetPacketPeer.swift
[668/1133] Compiling SwiftGodot EditorCommandPalette.swift
[669/1133] Compiling SwiftGodot EditorContextMenuPlugin.swift
[670/1133] Compiling SwiftGodot EditorDebuggerPlugin.swift
[671/1133] Compiling SwiftGodot EditorDebuggerSession.swift
[672/1133] Compiling SwiftGodot EditorExportPlatform.swift
[673/1133] Compiling SwiftGodot EditorExportPlatformAndroid.swift
[674/1133] Compiling SwiftGodot EditorExportPlatformExtension.swift
[675/1133] Compiling SwiftGodot EditorExportPlatformIOS.swift
[676/1133] Compiling SwiftGodot EditorExportPlatformLinuxBSD.swift
[677/1133] Compiling SwiftGodot EditorExportPlatformMacOS.swift
[678/1133] Compiling SwiftGodot EditorExportPlatformPC.swift
[679/1133] Compiling SwiftGodot EditorExportPlatformWeb.swift
[680/1133] Compiling SwiftGodot EditorExportPlatformWindows.swift
[681/1133] Compiling SwiftGodot EditorExportPlugin.swift
[682/1133] Compiling SwiftGodot EditorExportPreset.swift
[683/1158] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[684/1158] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[685/1158] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[686/1158] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[687/1158] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[688/1159] Compiling SwiftSyntaxBuilder Indenter.swift
[689/1159] Compiling SwiftSyntaxBuilder ListBuilder.swift
[690/1159] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[691/1159] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[692/1159] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[693/1159] Emitting module SwiftSyntaxBuilder
[694/1159] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[695/1159] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[696/1159] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[697/1159] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[698/1159] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[699/1173] Compiling SwiftGodot EditorFeatureProfile.swift
[700/1173] Compiling SwiftGodot EditorFileDialog.swift
[701/1173] Compiling SwiftGodot EditorFileSystem.swift
[702/1173] Compiling SwiftGodot EditorFileSystemDirectory.swift
[703/1173] Compiling SwiftGodot EditorFileSystemImportFormatSupportQuery.swift
[704/1173] Compiling SwiftGodot EditorImportPlugin.swift
[705/1173] Compiling SwiftGodot EditorInspector.swift
[706/1173] Compiling SwiftGodot EditorInspectorPlugin.swift
[707/1173] Compiling SwiftGodot EditorInterface.swift
[708/1173] Compiling SwiftGodot EditorNode3DGizmo.swift
[709/1173] Compiling SwiftGodot EditorNode3DGizmoPlugin.swift
[710/1173] Compiling SwiftGodot EditorPaths.swift
[711/1173] Compiling SwiftGodot EditorPlugin.swift
[712/1173] Compiling SwiftGodot EditorProperty.swift
[713/1173] Compiling SwiftGodot EditorResourceConversionPlugin.swift
[714/1173] Compiling SwiftGodot EditorResourcePicker.swift
[715/1173] Compiling SwiftGodot EditorResourcePreview.swift
[716/1173] Compiling SwiftGodot EditorResourcePreviewGenerator.swift
[717/1173] Compiling SwiftGodot EditorResourceTooltipPlugin.swift
[718/1173] Compiling SwiftGodot EditorSceneFormatImporter.swift
[719/1173] Compiling SwiftGodot EditorSceneFormatImporterBlend.swift
[720/1173] Compiling SwiftGodot EditorSceneFormatImporterFBX2GLTF.swift
[721/1173] Compiling SwiftGodot EditorSceneFormatImporterGLTF.swift
[722/1173] Compiling SwiftGodot EditorSceneFormatImporterUFBX.swift
[723/1173] Compiling SwiftGodot EditorScenePostImport.swift
[724/1198] Compiling Generator UnsafePointerHelpers.swift
[725/1198] Compiling Generator UtilityGen.swift
[726/1198] Compiling Generator StringOperations.swift
[727/1198] Compiling Generator TypeHelpers.swift
[728/1198] Compiling Generator Printer.swift
[729/1199] Compiling Generator main.swift
[730/1199] Emitting module Generator
[731/1199] Compiling Generator Arguments.swift
[732/1199] Compiling Generator BuiltinGen.swift
[733/1199] Compiling Generator DocModel.swift
[734/1199] Compiling Generator Enums.swift
[735/1199] Compiling Generator MethodGen.swift
[736/1199] Compiling Generator NativeStructures.swift
[737/1199] Compiling Generator ClassGen.swift
[738/1199] Compiling Generator Data.swift
[738/1199] Write Objects.LinkFileList
[764/1224] Linking Generator
[765/1224] Applying Generator
[767/1224] Compiling SwiftGodot GraphFrame.swift
[768/1224] Compiling SwiftGodot GraphNode.swift
[769/1224] Compiling SwiftGodot GridContainer.swift
[770/1224] Compiling SwiftGodot GridMap.swift
[771/1224] Compiling SwiftGodot GridMapEditorPlugin.swift
[772/1224] Compiling SwiftGodot GrooveJoint2D.swift
[773/1224] Compiling SwiftGodot HBoxContainer.swift
[774/1224] Compiling SwiftGodot HFlowContainer.swift
[775/1224] Compiling SwiftGodot HMACContext.swift
[776/1224] Compiling SwiftGodot HScrollBar.swift
[777/1224] Compiling SwiftGodot HSeparator.swift
[778/1224] Compiling SwiftGodot HSlider.swift
[779/1224] Compiling SwiftGodot HSplitContainer.swift
[780/1224] Compiling SwiftGodot HTTPClient.swift
[781/1224] Compiling SwiftGodot HTTPRequest.swift
[782/1224] Compiling SwiftGodot HashingContext.swift
[783/1224] Compiling SwiftGodot HeightMapShape3D.swift
[784/1224] Compiling SwiftGodot HingeJoint3D.swift
[785/1224] Compiling SwiftGodot IP.swift
[786/1224] Compiling SwiftGodot Image.swift
[787/1224] Compiling SwiftGodot ImageFormatLoader.swift
[788/1224] Compiling SwiftGodot ImageFormatLoaderExtension.swift
[789/1224] Compiling SwiftGodot ImageTexture.swift
[790/1224] Compiling SwiftGodot ImageTexture3D.swift
[791/1224] Compiling SwiftGodot ImageTextureLayered.swift
[792/1249] Compiling SwiftGodot EditorScenePostImportPlugin.swift
[793/1249] Compiling SwiftGodot EditorScript.swift
[794/1249] Compiling SwiftGodot EditorScriptPicker.swift
[795/1249] Compiling SwiftGodot EditorSelection.swift
[796/1249] Compiling SwiftGodot EditorSettings.swift
[797/1249] Compiling SwiftGodot EditorSpinSlider.swift
[798/1249] Compiling SwiftGodot EditorSyntaxHighlighter.swift
[799/1249] Compiling SwiftGodot EditorToaster.swift
[800/1249] Compiling SwiftGodot EditorTranslationParserPlugin.swift
[801/1249] Compiling SwiftGodot EditorUndoRedoManager.swift
[802/1249] Compiling SwiftGodot EditorVCSInterface.swift
[803/1249] Compiling SwiftGodot EncodedObjectAsID.swift
[804/1249] Compiling SwiftGodot Engine.swift
[805/1249] Compiling SwiftGodot EngineDebugger.swift
[806/1249] Compiling SwiftGodot EngineProfiler.swift
[807/1249] Compiling SwiftGodot Environment.swift
[808/1249] Compiling SwiftGodot Expression.swift
[809/1249] Compiling SwiftGodot ExternalTexture.swift
[810/1249] Compiling SwiftGodot FBXDocument.swift
[811/1249] Compiling SwiftGodot FBXState.swift
[812/1249] Compiling SwiftGodot FastNoiseLite.swift
[813/1249] Compiling SwiftGodot FileAccess.swift
[814/1249] Compiling SwiftGodot FileDialog.swift
[815/1249] Compiling SwiftGodot FileSystemDock.swift
[816/1249] Compiling SwiftGodot FlowContainer.swift
[842/1299] Compiling SwiftGodot ImmediateMesh.swift
[843/1299] Compiling SwiftGodot ImporterMesh.swift
[844/1299] Compiling SwiftGodot ImporterMeshInstance3D.swift
[845/1299] Compiling SwiftGodot Input.swift
[846/1299] Compiling SwiftGodot InputEvent.swift
[847/1299] Compiling SwiftGodot InputEventAction.swift
[848/1299] Compiling SwiftGodot InputEventFromWindow.swift
[849/1299] Compiling SwiftGodot InputEventGesture.swift
[850/1299] Compiling SwiftGodot InputEventJoypadButton.swift
[851/1299] Compiling SwiftGodot InputEventJoypadMotion.swift
[852/1299] Compiling SwiftGodot InputEventKey.swift
[853/1299] Compiling SwiftGodot InputEventMIDI.swift
[854/1299] Compiling SwiftGodot InputEventMagnifyGesture.swift
[855/1299] Compiling SwiftGodot InputEventMouse.swift
[856/1299] Compiling SwiftGodot InputEventMouseButton.swift
[857/1299] Compiling SwiftGodot InputEventMouseMotion.swift
[858/1299] Compiling SwiftGodot InputEventPanGesture.swift
[859/1299] Compiling SwiftGodot InputEventScreenDrag.swift
[860/1299] Compiling SwiftGodot InputEventScreenTouch.swift
[861/1299] Compiling SwiftGodot InputEventShortcut.swift
[862/1299] Compiling SwiftGodot InputEventWithModifiers.swift
[863/1299] Compiling SwiftGodot InputMap.swift
[864/1299] Compiling SwiftGodot InstancePlaceholder.swift
[865/1299] Compiling SwiftGodot IntervalTweener.swift
[866/1299] Compiling SwiftGodot ItemList.swift
[867/1324] Compiling SwiftGodot FogMaterial.swift
[868/1324] Compiling SwiftGodot FogVolume.swift
[869/1324] Compiling SwiftGodot Font.swift
[870/1324] Compiling SwiftGodot FontFile.swift
[871/1324] Compiling SwiftGodot FontVariation.swift
[872/1324] Compiling SwiftGodot FramebufferCacheRD.swift
[873/1324] Compiling SwiftGodot GDExtension.swift
[874/1324] Compiling SwiftGodot GDExtensionManager.swift
[875/1324] Compiling SwiftGodot GDScript.swift
[876/1324] Compiling SwiftGodot GDScriptSyntaxHighlighter.swift
[877/1324] Compiling SwiftGodot GLTFAccessor.swift
[878/1324] Compiling SwiftGodot GLTFAnimation.swift
[879/1324] Compiling SwiftGodot GLTFBufferView.swift
[880/1324] Compiling SwiftGodot GLTFCamera.swift
[881/1324] Compiling SwiftGodot GLTFDocument.swift
[882/1324] Compiling SwiftGodot GLTFDocumentExtension.swift
[883/1324] Compiling SwiftGodot GLTFDocumentExtensionConvertImporterMesh.swift
[884/1324] Compiling SwiftGodot GLTFLight.swift
[885/1324] Compiling SwiftGodot GLTFMesh.swift
[886/1324] Compiling SwiftGodot GLTFNode.swift
[887/1324] Compiling SwiftGodot GLTFObjectModelProperty.swift
[888/1324] Compiling SwiftGodot GLTFPhysicsBody.swift
[889/1324] Compiling SwiftGodot GLTFPhysicsShape.swift
[890/1324] Compiling SwiftGodot GLTFSkeleton.swift
[891/1324] Compiling SwiftGodot GLTFSkin.swift
[892/1349] Compiling SwiftGodot GLTFSpecGloss.swift
[893/1349] Compiling SwiftGodot GLTFState.swift
[894/1349] Compiling SwiftGodot GLTFTexture.swift
[895/1349] Compiling SwiftGodot GLTFTextureSampler.swift
[896/1349] Compiling SwiftGodot GPUParticles2D.swift
[897/1349] Compiling SwiftGodot GPUParticles3D.swift
[898/1349] Compiling SwiftGodot GPUParticlesAttractor3D.swift
[899/1349] Compiling SwiftGodot GPUParticlesAttractorBox3D.swift
[900/1349] Compiling SwiftGodot GPUParticlesAttractorSphere3D.swift
[901/1349] Compiling SwiftGodot GPUParticlesAttractorVectorField3D.swift
[902/1349] Compiling SwiftGodot GPUParticlesCollision3D.swift
[903/1349] Compiling SwiftGodot GPUParticlesCollisionBox3D.swift
[904/1349] Compiling SwiftGodot GPUParticlesCollisionHeightField3D.swift
[905/1349] Compiling SwiftGodot GPUParticlesCollisionSDF3D.swift
[906/1349] Compiling SwiftGodot GPUParticlesCollisionSphere3D.swift
[907/1349] Compiling SwiftGodot Generic6DOFJoint3D.swift
[908/1349] Compiling SwiftGodot Geometry2D.swift
[909/1349] Compiling SwiftGodot Geometry3D.swift
[910/1349] Compiling SwiftGodot GeometryInstance3D.swift
[911/1349] Compiling SwiftGodot GodotInstance.swift
[912/1349] Compiling SwiftGodot Gradient.swift
[913/1349] Compiling SwiftGodot GradientTexture1D.swift
[914/1349] Compiling SwiftGodot GradientTexture2D.swift
[915/1349] Compiling SwiftGodot GraphEdit.swift
[916/1349] Compiling SwiftGodot GraphElement.swift
[967/1424] Compiling SwiftGodot JNISingleton.swift
[968/1424] Compiling SwiftGodot JSON.swift
[969/1424] Compiling SwiftGodot JSONRPC.swift
[970/1424] Compiling SwiftGodot JavaClass.swift
[971/1424] Compiling SwiftGodot JavaClassWrapper.swift
[972/1424] Compiling SwiftGodot JavaObject.swift
[973/1424] Compiling SwiftGodot JavaScriptBridge.swift
[974/1424] Compiling SwiftGodot JavaScriptObject.swift
[975/1424] Compiling SwiftGodot Joint2D.swift
[976/1424] Compiling SwiftGodot Joint3D.swift
[977/1424] Compiling SwiftGodot KinematicCollision2D.swift
[978/1424] Compiling SwiftGodot KinematicCollision3D.swift
[979/1424] Compiling SwiftGodot Label.swift
[980/1424] Compiling SwiftGodot Label3D.swift
[981/1424] Compiling SwiftGodot LabelSettings.swift
[982/1424] Compiling SwiftGodot Light2D.swift
[983/1424] Compiling SwiftGodot Light3D.swift
[984/1424] Compiling SwiftGodot LightOccluder2D.swift
[985/1424] Compiling SwiftGodot LightmapGI.swift
[986/1424] Compiling SwiftGodot LightmapGIData.swift
[987/1424] Compiling SwiftGodot LightmapProbe.swift
[988/1424] Compiling SwiftGodot Lightmapper.swift
[989/1424] Compiling SwiftGodot LightmapperRD.swift
[990/1424] Compiling SwiftGodot Line2D.swift
[991/1424] Compiling SwiftGodot LineEdit.swift
[992/1449] Compiling SwiftGodot OpenXRAnalogThresholdModifier.swift
[993/1449] Compiling SwiftGodot OpenXRBindingModifier.swift
[994/1449] Compiling SwiftGodot OpenXRBindingModifierEditor.swift
[995/1449] Compiling SwiftGodot OpenXRCompositionLayer.swift
[996/1449] Compiling SwiftGodot OpenXRCompositionLayerCylinder.swift
[997/1449] Compiling SwiftGodot OpenXRCompositionLayerEquirect.swift
[998/1449] Compiling SwiftGodot OpenXRCompositionLayerQuad.swift
[999/1449] Compiling SwiftGodot OpenXRDpadBindingModifier.swift
[1000/1449] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[1001/1449] Compiling SwiftGodot OpenXRHand.swift
[1002/1449] Compiling SwiftGodot OpenXRHapticBase.swift
[1003/1449] Compiling SwiftGodot OpenXRHapticVibration.swift
[1004/1449] Compiling SwiftGodot OpenXRIPBinding.swift
[1005/1449] Compiling SwiftGodot OpenXRIPBindingModifier.swift
[1006/1449] Compiling SwiftGodot OpenXRInteractionProfile.swift
[1007/1449] Compiling SwiftGodot OpenXRInteractionProfileEditor.swift
[1008/1449] Compiling SwiftGodot OpenXRInteractionProfileEditorBase.swift
[1009/1449] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[1010/1449] Compiling SwiftGodot OpenXRInterface.swift
[1011/1449] Compiling SwiftGodot OpenXRVisibilityMask.swift
[1012/1449] Compiling SwiftGodot OptimizedTranslation.swift
[1013/1449] Compiling SwiftGodot OptionButton.swift
[1014/1449] Compiling SwiftGodot PCKPacker.swift
[1015/1449] Compiling SwiftGodot PackedDataContainer.swift
[1016/1449] Compiling SwiftGodot PackedDataContainerRef.swift
[1017/1474] Compiling SwiftGodot LinkButton.swift
[1018/1474] Compiling SwiftGodot LookAtModifier3D.swift
[1019/1474] Compiling SwiftGodot MainLoop.swift
[1020/1474] Compiling SwiftGodot MarginContainer.swift
[1021/1474] Compiling SwiftGodot Marker2D.swift
[1022/1474] Compiling SwiftGodot Marker3D.swift
[1023/1474] Compiling SwiftGodot Marshalls.swift
[1024/1474] Compiling SwiftGodot Material.swift
[1025/1474] Compiling SwiftGodot MenuBar.swift
[1026/1474] Compiling SwiftGodot MenuButton.swift
[1027/1474] Compiling SwiftGodot Mesh.swift
[1028/1474] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[1029/1474] Compiling SwiftGodot MeshDataTool.swift
[1030/1474] Compiling SwiftGodot MeshInstance2D.swift
[1031/1474] Compiling SwiftGodot MeshInstance3D.swift
[1032/1474] Compiling SwiftGodot MeshLibrary.swift
[1033/1474] Compiling SwiftGodot MeshTexture.swift
[1034/1474] Compiling SwiftGodot MethodTweener.swift
[1035/1474] Compiling SwiftGodot MissingNode.swift
[1036/1474] Compiling SwiftGodot MissingResource.swift
[1037/1474] Compiling SwiftGodot MobileVRInterface.swift
[1038/1474] Compiling SwiftGodot MovieWriter.swift
[1039/1474] Compiling SwiftGodot MultiMesh.swift
[1040/1474] Compiling SwiftGodot MultiMeshInstance2D.swift
[1041/1474] Compiling SwiftGodot MultiMeshInstance3D.swift
[1067/1524] Compiling SwiftGodot PackedScene.swift
[1068/1524] Compiling SwiftGodot PacketPeer.swift
[1069/1524] Compiling SwiftGodot PacketPeerDTLS.swift
[1070/1524] Compiling SwiftGodot PacketPeerExtension.swift
[1071/1524] Compiling SwiftGodot PacketPeerStream.swift
[1072/1524] Compiling SwiftGodot PacketPeerUDP.swift
[1073/1524] Compiling SwiftGodot Panel.swift
[1074/1524] Compiling SwiftGodot PanelContainer.swift
[1075/1524] Compiling SwiftGodot PanoramaSkyMaterial.swift
[1076/1524] Compiling SwiftGodot Parallax2D.swift
[1077/1524] Compiling SwiftGodot ParallaxBackground.swift
[1078/1524] Compiling SwiftGodot ParallaxLayer.swift
[1079/1524] Compiling SwiftGodot ParticleProcessMaterial.swift
[1080/1524] Compiling SwiftGodot Path2D.swift
[1081/1524] Compiling SwiftGodot Path3D.swift
[1082/1524] Compiling SwiftGodot PathFollow2D.swift
[1083/1524] Compiling SwiftGodot PathFollow3D.swift
[1084/1524] Compiling SwiftGodot Performance.swift
[1085/1524] Compiling SwiftGodot PhysicalBone2D.swift
[1086/1524] Compiling SwiftGodot PhysicalBone3D.swift
[1087/1524] Compiling SwiftGodot PhysicalBoneSimulator3D.swift
[1088/1524] Compiling SwiftGodot PhysicalSkyMaterial.swift
[1089/1524] Compiling SwiftGodot PhysicsBody2D.swift
[1090/1524] Compiling SwiftGodot PhysicsBody3D.swift
[1091/1524] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[1092/1549] Compiling SwiftGodot GraphFrame.swift
[1093/1549] Compiling SwiftGodot GraphNode.swift
[1094/1549] Compiling SwiftGodot GridContainer.swift
[1095/1549] Compiling SwiftGodot GridMap.swift
[1096/1549] Compiling SwiftGodot GridMapEditorPlugin.swift
[1097/1549] Compiling SwiftGodot GrooveJoint2D.swift
[1098/1549] Compiling SwiftGodot HBoxContainer.swift
[1099/1549] Compiling SwiftGodot HFlowContainer.swift
[1100/1549] Compiling SwiftGodot HMACContext.swift
[1101/1549] Compiling SwiftGodot HScrollBar.swift
[1102/1549] Compiling SwiftGodot HSeparator.swift
[1103/1549] Compiling SwiftGodot HSlider.swift
[1104/1549] Compiling SwiftGodot HSplitContainer.swift
[1105/1549] Compiling SwiftGodot HTTPClient.swift
[1106/1549] Compiling SwiftGodot HTTPRequest.swift
[1107/1549] Compiling SwiftGodot HashingContext.swift
[1108/1549] Compiling SwiftGodot HeightMapShape3D.swift
[1109/1549] Compiling SwiftGodot HingeJoint3D.swift
[1110/1549] Compiling SwiftGodot IP.swift
[1111/1549] Compiling SwiftGodot Image.swift
[1112/1549] Compiling SwiftGodot ImageFormatLoader.swift
[1113/1549] Compiling SwiftGodot ImageFormatLoaderExtension.swift
[1114/1549] Compiling SwiftGodot ImageTexture.swift
[1115/1549] Compiling SwiftGodot ImageTexture3D.swift
[1116/1549] Compiling SwiftGodot ImageTextureLayered.swift
[1117/1574] Compiling SwiftGodot MultiplayerAPI.swift
[1118/1574] Compiling SwiftGodot MultiplayerAPIExtension.swift
[1119/1574] Compiling SwiftGodot MultiplayerPeer.swift
[1120/1574] Compiling SwiftGodot MultiplayerPeerExtension.swift
[1121/1574] Compiling SwiftGodot MultiplayerSpawner.swift
[1122/1574] Compiling SwiftGodot MultiplayerSynchronizer.swift
[1123/1574] Compiling SwiftGodot Mutex.swift
[1124/1574] Compiling SwiftGodot NativeMenu.swift
[1125/1574] Compiling SwiftGodot NavigationAgent2D.swift
[1126/1574] Compiling SwiftGodot NavigationAgent3D.swift
[1127/1574] Compiling SwiftGodot NavigationLink2D.swift
[1128/1574] Compiling SwiftGodot NavigationLink3D.swift
[1129/1574] Compiling SwiftGodot NavigationMesh.swift
[1130/1574] Compiling SwiftGodot NavigationMeshGenerator.swift
[1131/1574] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[1132/1574] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[1133/1574] Compiling SwiftGodot NavigationObstacle2D.swift
[1134/1574] Compiling SwiftGodot NavigationObstacle3D.swift
[1135/1574] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[1136/1574] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[1137/1574] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[1138/1574] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[1139/1574] Compiling SwiftGodot NavigationPolygon.swift
[1140/1574] Compiling SwiftGodot NavigationRegion2D.swift
[1141/1574] Compiling SwiftGodot NavigationRegion3D.swift
[1142/1599] Compiling SwiftGodot PinJoint2D.swift
[1143/1599] Compiling SwiftGodot PinJoint3D.swift
[1144/1599] Compiling SwiftGodot PlaceholderCubemap.swift
[1145/1599] Compiling SwiftGodot PlaceholderCubemapArray.swift
[1146/1599] Compiling SwiftGodot PlaceholderMaterial.swift
[1147/1599] Compiling SwiftGodot PlaceholderMesh.swift
[1148/1599] Compiling SwiftGodot PlaceholderTexture2D.swift
[1149/1599] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[1150/1599] Compiling SwiftGodot PlaceholderTexture3D.swift
[1151/1599] Compiling SwiftGodot PlaceholderTextureLayered.swift
[1152/1599] Compiling SwiftGodot PlaneMesh.swift
[1153/1599] Compiling SwiftGodot PointLight2D.swift
[1154/1599] Compiling SwiftGodot PointMesh.swift
[1155/1599] Compiling SwiftGodot Polygon2D.swift
[1156/1599] Compiling SwiftGodot PolygonOccluder3D.swift
[1157/1599] Compiling SwiftGodot PolygonPathFinder.swift
[1158/1599] Compiling SwiftGodot Popup.swift
[1159/1599] Compiling SwiftGodot PopupMenu.swift
[1160/1599] Compiling SwiftGodot PopupPanel.swift
[1161/1599] Compiling SwiftGodot PortableCompressedTexture2D.swift
[1162/1599] Compiling SwiftGodot PrimitiveMesh.swift
[1163/1599] Compiling SwiftGodot PrismMesh.swift
[1164/1599] Compiling SwiftGodot ProceduralSkyMaterial.swift
[1165/1599] Compiling SwiftGodot ProgressBar.swift
[1166/1599] Compiling SwiftGodot ProjectSettings.swift
[1167/1624] Compiling SwiftGodot PropertyTweener.swift
[1168/1624] Compiling SwiftGodot QuadMesh.swift
[1169/1624] Compiling SwiftGodot QuadOccluder3D.swift
[1170/1624] Compiling SwiftGodot RDAttachmentFormat.swift
[1171/1624] Compiling SwiftGodot RDFramebufferPass.swift
[1172/1624] Compiling SwiftGodot RDPipelineColorBlendState.swift
[1173/1624] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[1174/1624] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[1175/1624] Compiling SwiftGodot RDPipelineMultisampleState.swift
[1176/1624] Compiling SwiftGodot RDPipelineRasterizationState.swift
[1177/1624] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[1178/1624] Compiling SwiftGodot RDSamplerState.swift
[1179/1624] Compiling SwiftGodot RDShaderFile.swift
[1180/1624] Compiling SwiftGodot RDShaderSPIRV.swift
[1181/1624] Compiling SwiftGodot RDShaderSource.swift
[1182/1624] Compiling SwiftGodot RDTextureFormat.swift
[1183/1624] Compiling SwiftGodot RDTextureView.swift
[1184/1624] Compiling SwiftGodot RDUniform.swift
[1185/1624] Compiling SwiftGodot RDVertexAttribute.swift
[1186/1624] Compiling SwiftGodot RandomNumberGenerator.swift
[1187/1624] Compiling SwiftGodot Range.swift
[1188/1624] Compiling SwiftGodot RayCast2D.swift
[1189/1624] Compiling SwiftGodot RayCast3D.swift
[1190/1624] Compiling SwiftGodot RectangleShape2D.swift
[1191/1624] Compiling SwiftGodot RefCounted.swift
[1192/1649] Compiling SwiftGodot ImmediateMesh.swift
[1193/1649] Compiling SwiftGodot ImporterMesh.swift
[1194/1649] Compiling SwiftGodot ImporterMeshInstance3D.swift
[1195/1649] Compiling SwiftGodot Input.swift
[1196/1649] Compiling SwiftGodot InputEvent.swift
[1197/1649] Compiling SwiftGodot InputEventAction.swift
[1198/1649] Compiling SwiftGodot InputEventFromWindow.swift
[1199/1649] Compiling SwiftGodot InputEventGesture.swift
[1200/1649] Compiling SwiftGodot InputEventJoypadButton.swift
[1201/1649] Compiling SwiftGodot InputEventJoypadMotion.swift
[1202/1649] Compiling SwiftGodot InputEventKey.swift
[1203/1649] Compiling SwiftGodot InputEventMIDI.swift
[1204/1649] Compiling SwiftGodot InputEventMagnifyGesture.swift
[1205/1649] Compiling SwiftGodot InputEventMouse.swift
[1206/1649] Compiling SwiftGodot InputEventMouseButton.swift
[1207/1649] Compiling SwiftGodot InputEventMouseMotion.swift
[1208/1649] Compiling SwiftGodot InputEventPanGesture.swift
[1209/1649] Compiling SwiftGodot InputEventScreenDrag.swift
[1210/1649] Compiling SwiftGodot InputEventScreenTouch.swift
[1211/1649] Compiling SwiftGodot InputEventShortcut.swift
[1212/1649] Compiling SwiftGodot InputEventWithModifiers.swift
[1213/1649] Compiling SwiftGodot InputMap.swift
[1214/1649] Compiling SwiftGodot InstancePlaceholder.swift
[1215/1649] Compiling SwiftGodot IntervalTweener.swift
[1216/1649] Compiling SwiftGodot ItemList.swift
[1217/1674] Compiling SwiftGodot NavigationServer2D.swift
[1218/1674] Compiling SwiftGodot NavigationServer3D.swift
[1219/1674] Compiling SwiftGodot NinePatchRect.swift
[1220/1674] Compiling SwiftGodot Node.swift
[1221/1674] Compiling SwiftGodot Node2D.swift
[1222/1674] Compiling SwiftGodot Node3D.swift
[1223/1674] Compiling SwiftGodot Node3DGizmo.swift
[1224/1674] Compiling SwiftGodot Noise.swift
[1225/1674] Compiling SwiftGodot NoiseTexture2D.swift
[1226/1674] Compiling SwiftGodot NoiseTexture3D.swift
[1227/1674] Compiling SwiftGodot ORMMaterial3D.swift
[1228/1674] Compiling SwiftGodot OS.swift
[1229/1674] Compiling SwiftGodot Object.swift
[1230/1674] Compiling SwiftGodot Occluder3D.swift
[1231/1674] Compiling SwiftGodot OccluderInstance3D.swift
[1232/1674] Compiling SwiftGodot OccluderPolygon2D.swift
[1233/1674] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[1234/1674] Compiling SwiftGodot OggPacketSequence.swift
[1235/1674] Compiling SwiftGodot OggPacketSequencePlayback.swift
[1236/1674] Compiling SwiftGodot OmniLight3D.swift
[1237/1674] Compiling SwiftGodot OpenXRAPIExtension.swift
[1238/1674] Compiling SwiftGodot OpenXRAction.swift
[1239/1674] Compiling SwiftGodot OpenXRActionBindingModifier.swift
[1240/1674] Compiling SwiftGodot OpenXRActionMap.swift
[1241/1674] Compiling SwiftGodot OpenXRActionSet.swift
[1242/1699] Compiling SwiftGodot ResourceImporterBMFont.swift
[1243/1699] Compiling SwiftGodot ResourceImporterBitMap.swift
[1244/1699] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
[1245/1699] Compiling SwiftGodot ResourceImporterDynamicFont.swift
[1246/1699] Compiling SwiftGodot ResourceImporterImage.swift
[1247/1699] Compiling SwiftGodot ResourceImporterImageFont.swift
[1248/1699] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
[1249/1699] Compiling SwiftGodot ResourceImporterMP3.swift
[1250/1699] Compiling SwiftGodot ResourceImporterOBJ.swift
[1251/1699] Compiling SwiftGodot ResourceImporterOggVorbis.swift
[1252/1699] Compiling SwiftGodot ResourceImporterScene.swift
[1253/1699] Compiling SwiftGodot ResourceImporterShaderFile.swift
[1254/1699] Compiling SwiftGodot ResourceImporterTexture.swift
[1255/1699] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
[1256/1699] Compiling SwiftGodot ResourceImporterWAV.swift
[1257/1699] Compiling SwiftGodot ResourceLoader.swift
[1258/1699] Compiling SwiftGodot ResourcePreloader.swift
[1259/1699] Compiling SwiftGodot ResourceSaver.swift
[1260/1699] Compiling SwiftGodot ResourceUID.swift
[1261/1699] Compiling SwiftGodot RetargetModifier3D.swift
[1262/1699] Compiling SwiftGodot RibbonTrailMesh.swift
[1263/1699] Compiling SwiftGodot RichTextEffect.swift
[1264/1699] Compiling SwiftGodot RichTextLabel.swift
[1265/1699] Compiling SwiftGodot RigidBody2D.swift
[1266/1699] Compiling SwiftGodot RigidBody3D.swift
[1267/1723] Compiling SwiftGodot LinkButton.swift
[1268/1723] Compiling SwiftGodot LookAtModifier3D.swift
[1269/1723] Compiling SwiftGodot MainLoop.swift
[1270/1723] Compiling SwiftGodot MarginContainer.swift
[1271/1723] Compiling SwiftGodot Marker2D.swift
[1272/1723] Compiling SwiftGodot Marker3D.swift
[1273/1723] Compiling SwiftGodot Marshalls.swift
[1274/1723] Compiling SwiftGodot Material.swift
[1275/1723] Compiling SwiftGodot MenuBar.swift
[1276/1723] Compiling SwiftGodot MenuButton.swift
[1277/1723] Compiling SwiftGodot Mesh.swift
[1278/1723] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[1279/1723] Compiling SwiftGodot MeshDataTool.swift
[1280/1723] Compiling SwiftGodot MeshInstance2D.swift
[1281/1723] Compiling SwiftGodot MeshInstance3D.swift
[1282/1723] Compiling SwiftGodot MeshLibrary.swift
[1283/1723] Compiling SwiftGodot MeshTexture.swift
[1284/1723] Compiling SwiftGodot MethodTweener.swift
[1285/1723] Compiling SwiftGodot MissingNode.swift
[1286/1723] Compiling SwiftGodot MissingResource.swift
[1287/1723] Compiling SwiftGodot MobileVRInterface.swift
[1288/1723] Compiling SwiftGodot MovieWriter.swift
[1289/1723] Compiling SwiftGodot MultiMesh.swift
[1290/1723] Compiling SwiftGodot MultiMeshInstance2D.swift
[1291/1723] Compiling SwiftGodot MultiMeshInstance3D.swift
[1292/1748] Compiling SwiftGodot JNISingleton.swift
[1293/1748] Compiling SwiftGodot JSON.swift
[1294/1748] Compiling SwiftGodot JSONRPC.swift
[1295/1748] Compiling SwiftGodot JavaClass.swift
[1296/1748] Compiling SwiftGodot JavaClassWrapper.swift
[1297/1748] Compiling SwiftGodot JavaObject.swift
[1298/1748] Compiling SwiftGodot JavaScriptBridge.swift
[1299/1748] Compiling SwiftGodot JavaScriptObject.swift
[1300/1748] Compiling SwiftGodot Joint2D.swift
[1301/1748] Compiling SwiftGodot Joint3D.swift
[1302/1748] Compiling SwiftGodot KinematicCollision2D.swift
[1303/1748] Compiling SwiftGodot KinematicCollision3D.swift
[1304/1748] Compiling SwiftGodot Label.swift
[1305/1748] Compiling SwiftGodot Label3D.swift
[1306/1748] Compiling SwiftGodot LabelSettings.swift
[1307/1748] Compiling SwiftGodot Light2D.swift
[1308/1748] Compiling SwiftGodot Light3D.swift
[1309/1748] Compiling SwiftGodot LightOccluder2D.swift
[1310/1748] Compiling SwiftGodot LightmapGI.swift
[1311/1748] Compiling SwiftGodot LightmapGIData.swift
[1312/1748] Compiling SwiftGodot LightmapProbe.swift
[1313/1748] Compiling SwiftGodot Lightmapper.swift
[1314/1748] Compiling SwiftGodot LightmapperRD.swift
[1315/1748] Compiling SwiftGodot Line2D.swift
[1316/1748] Compiling SwiftGodot LineEdit.swift
[1317/1748] Compiling SwiftGodot RootMotionView.swift
[1318/1748] Compiling SwiftGodot SceneMultiplayer.swift
[1319/1748] Compiling SwiftGodot SceneReplicationConfig.swift
[1320/1748] Compiling SwiftGodot SceneState.swift
[1321/1748] Compiling SwiftGodot SceneTree.swift
[1322/1748] Compiling SwiftGodot SceneTreeTimer.swift
[1323/1748] Compiling SwiftGodot Script.swift
[1324/1748] Compiling SwiftGodot ScriptCreateDialog.swift
[1325/1748] Compiling SwiftGodot ScriptEditor.swift
[1326/1748] Compiling SwiftGodot ScriptEditorBase.swift
[1327/1748] Compiling SwiftGodot ScriptExtension.swift
[1328/1748] Compiling SwiftGodot ScriptLanguage.swift
[1329/1748] Compiling SwiftGodot ScriptLanguageExtension.swift
[1330/1748] Compiling SwiftGodot ScrollBar.swift
[1331/1748] Compiling SwiftGodot ScrollContainer.swift
[1332/1748] Compiling SwiftGodot SegmentShape2D.swift
[1333/1748] Compiling SwiftGodot Semaphore.swift
[1334/1748] Compiling SwiftGodot SeparationRayShape2D.swift
[1335/1748] Compiling SwiftGodot SeparationRayShape3D.swift
[1336/1748] Compiling SwiftGodot Separator.swift
[1337/1748] Compiling SwiftGodot Shader.swift
[1338/1748] Compiling SwiftGodot ShaderGlobalsOverride.swift
[1339/1748] Compiling SwiftGodot ShaderInclude.swift
[1340/1748] Compiling SwiftGodot ShaderIncludeDB.swift
[1341/1748] Compiling SwiftGodot ShaderMaterial.swift
[1342/1797] Compiling SwiftGodot Shape2D.swift
[1343/1797] Compiling SwiftGodot Shape3D.swift
[1344/1797] Compiling SwiftGodot ShapeCast2D.swift
[1345/1797] Compiling SwiftGodot ShapeCast3D.swift
[1346/1797] Compiling SwiftGodot Shortcut.swift
[1347/1797] Compiling SwiftGodot Skeleton2D.swift
[1348/1797] Compiling SwiftGodot Skeleton3D.swift
[1349/1797] Compiling SwiftGodot SkeletonIK3D.swift
[1350/1797] Compiling SwiftGodot SkeletonModification2D.swift
[1351/1797] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[1352/1797] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[1353/1797] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[1354/1797] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[1355/1797] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[1356/1797] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[1357/1797] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[1358/1797] Compiling SwiftGodot SkeletonModificationStack2D.swift
[1359/1797] Compiling SwiftGodot SkeletonModifier3D.swift
[1360/1797] Compiling SwiftGodot SkeletonProfile.swift
[1361/1797] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[1362/1797] Compiling SwiftGodot Skin.swift
[1363/1797] Compiling SwiftGodot SkinReference.swift
[1364/1797] Compiling SwiftGodot Sky.swift
[1365/1797] Compiling SwiftGodot Slider.swift
[1366/1797] Compiling SwiftGodot SliderJoint3D.swift
[1367/1821] Compiling SwiftGodot SoftBody3D.swift
[1368/1821] Compiling SwiftGodot SphereMesh.swift
[1369/1821] Compiling SwiftGodot SphereOccluder3D.swift
[1370/1821] Compiling SwiftGodot SphereShape3D.swift
[1371/1821] Compiling SwiftGodot SpinBox.swift
[1372/1821] Compiling SwiftGodot SplitContainer.swift
[1373/1821] Compiling SwiftGodot SpotLight3D.swift
[1374/1821] Compiling SwiftGodot SpringArm3D.swift
[1375/1821] Compiling SwiftGodot SpringBoneCollision3D.swift
[1376/1821] Compiling SwiftGodot SpringBoneCollisionCapsule3D.swift
[1377/1821] Compiling SwiftGodot SpringBoneCollisionPlane3D.swift
[1378/1821] Compiling SwiftGodot SpringBoneCollisionSphere3D.swift
[1379/1821] Compiling SwiftGodot SpringBoneSimulator3D.swift
[1380/1821] Compiling SwiftGodot Sprite2D.swift
[1381/1821] Compiling SwiftGodot Sprite3D.swift
[1382/1821] Compiling SwiftGodot SpriteBase3D.swift
[1383/1821] Compiling SwiftGodot SpriteFrames.swift
[1384/1821] Compiling SwiftGodot StandardMaterial3D.swift
[1385/1821] Compiling SwiftGodot StaticBody2D.swift
[1386/1821] Compiling SwiftGodot StaticBody3D.swift
[1387/1821] Compiling SwiftGodot StatusIndicator.swift
[1388/1821] Compiling SwiftGodot StreamPeer.swift
[1389/1821] Compiling SwiftGodot StreamPeerBuffer.swift
[1390/1821] Compiling SwiftGodot StreamPeerExtension.swift
[1391/1821] Compiling SwiftGodot StreamPeerGZIP.swift
[1392/1845] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[1393/1845] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[1394/1845] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[1395/1845] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[1396/1845] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[1397/1845] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[1398/1845] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[1399/1845] Compiling SwiftGodot PhysicsMaterial.swift
[1400/1845] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[1401/1845] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[1402/1845] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[1403/1845] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[1404/1845] Compiling SwiftGodot PhysicsServer2D.swift
[1405/1845] Compiling SwiftGodot PhysicsServer2DExtension.swift
[1406/1845] Compiling SwiftGodot PhysicsServer2DManager.swift
[1407/1845] Compiling SwiftGodot PhysicsServer3D.swift
[1408/1845] Compiling SwiftGodot PhysicsServer3DExtension.swift
[1409/1845] Compiling SwiftGodot PhysicsServer3DManager.swift
[1410/1845] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[1411/1845] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[1412/1845] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[1413/1845] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[1414/1845] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[1415/1845] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[1416/1845] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[1417/1869] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[1418/1869] Compiling SwiftGodot VisualShaderNodeComment.swift
[1419/1869] Compiling SwiftGodot VisualShaderNodeCompare.swift
[1420/1869] Compiling SwiftGodot VisualShaderNodeConstant.swift
[1421/1869] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[1422/1869] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[1423/1869] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[1424/1869] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[1425/1869] Compiling SwiftGodot VisualShaderNodeCustom.swift
[1426/1869] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[1427/1869] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[1428/1869] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[1429/1869] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[1430/1869] Compiling SwiftGodot VisualShaderNodeExpression.swift
[1431/1869] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[1432/1869] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[1433/1869] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[1434/1869] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[1435/1869] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[1436/1869] Compiling SwiftGodot VisualShaderNodeFrame.swift
[1437/1869] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[1438/1869] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[1439/1869] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[1440/1869] Compiling SwiftGodot VisualShaderNodeIf.swift
[1441/1893] Compiling SwiftGodot OpenXRAnalogThresholdModifier.swift
[1442/1893] Compiling SwiftGodot OpenXRBindingModifier.swift
[1443/1893] Compiling SwiftGodot OpenXRBindingModifierEditor.swift
[1444/1893] Compiling SwiftGodot OpenXRCompositionLayer.swift
[1445/1893] Compiling SwiftGodot OpenXRCompositionLayerCylinder.swift
[1446/1893] Compiling SwiftGodot OpenXRCompositionLayerEquirect.swift
[1447/1893] Compiling SwiftGodot OpenXRCompositionLayerQuad.swift
[1448/1893] Compiling SwiftGodot OpenXRDpadBindingModifier.swift
[1449/1893] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[1450/1893] Compiling SwiftGodot OpenXRHand.swift
[1451/1893] Compiling SwiftGodot OpenXRHapticBase.swift
[1452/1893] Compiling SwiftGodot OpenXRHapticVibration.swift
[1453/1893] Compiling SwiftGodot OpenXRIPBinding.swift
[1454/1893] Compiling SwiftGodot OpenXRIPBindingModifier.swift
[1455/1893] Compiling SwiftGodot OpenXRInteractionProfile.swift
[1456/1893] Compiling SwiftGodot OpenXRInteractionProfileEditor.swift
[1457/1893] Compiling SwiftGodot OpenXRInteractionProfileEditorBase.swift
[1458/1893] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[1459/1893] Compiling SwiftGodot OpenXRInterface.swift
[1460/1893] Compiling SwiftGodot OpenXRVisibilityMask.swift
[1461/1893] Compiling SwiftGodot OptimizedTranslation.swift
[1462/1893] Compiling SwiftGodot OptionButton.swift
[1463/1893] Compiling SwiftGodot PCKPacker.swift
[1464/1893] Compiling SwiftGodot PackedDataContainer.swift
[1465/1893] Compiling SwiftGodot PackedDataContainerRef.swift
[1466/1918] Compiling SwiftGodot ReferenceRect.swift
[1467/1918] Compiling SwiftGodot ReflectionProbe.swift
[1468/1918] Compiling SwiftGodot RegEx.swift
[1469/1918] Compiling SwiftGodot RegExMatch.swift
[1470/1918] Compiling SwiftGodot RemoteTransform2D.swift
[1471/1918] Compiling SwiftGodot RemoteTransform3D.swift
[1472/1918] Compiling SwiftGodot RenderData.swift
[1473/1918] Compiling SwiftGodot RenderDataExtension.swift
[1474/1918] Compiling SwiftGodot RenderDataRD.swift
[1475/1918] Compiling SwiftGodot RenderSceneBuffers.swift
[1476/1918] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
[1477/1918] Compiling SwiftGodot RenderSceneBuffersExtension.swift
[1478/1918] Compiling SwiftGodot RenderSceneBuffersRD.swift
[1479/1918] Compiling SwiftGodot RenderSceneData.swift
[1480/1918] Compiling SwiftGodot RenderSceneDataExtension.swift
[1481/1918] Compiling SwiftGodot RenderSceneDataRD.swift
[1482/1918] Compiling SwiftGodot RenderingDevice.swift
[1483/1918] Compiling SwiftGodot RenderingNativeSurface.swift
[1484/1918] Compiling SwiftGodot RenderingNativeSurfaceApple.swift
[1485/1918] Compiling SwiftGodot RenderingNativeSurfaceVulkan.swift
[1486/1918] Compiling SwiftGodot RenderingServer.swift
[1487/1918] Compiling SwiftGodot Resource.swift
[1488/1918] Compiling SwiftGodot ResourceFormatLoader.swift
[1489/1918] Compiling SwiftGodot ResourceFormatSaver.swift
[1490/1918] Compiling SwiftGodot ResourceImporter.swift
[1491/1942] Compiling SwiftGodot MultiplayerAPI.swift
[1492/1942] Compiling SwiftGodot MultiplayerAPIExtension.swift
[1493/1942] Compiling SwiftGodot MultiplayerPeer.swift
[1494/1942] Compiling SwiftGodot MultiplayerPeerExtension.swift
[1495/1942] Compiling SwiftGodot MultiplayerSpawner.swift
[1496/1942] Compiling SwiftGodot MultiplayerSynchronizer.swift
[1497/1942] Compiling SwiftGodot Mutex.swift
[1498/1942] Compiling SwiftGodot NativeMenu.swift
[1499/1942] Compiling SwiftGodot NavigationAgent2D.swift
[1500/1942] Compiling SwiftGodot NavigationAgent3D.swift
[1501/1942] Compiling SwiftGodot NavigationLink2D.swift
[1502/1942] Compiling SwiftGodot NavigationLink3D.swift
[1503/1942] Compiling SwiftGodot NavigationMesh.swift
[1504/1942] Compiling SwiftGodot NavigationMeshGenerator.swift
[1505/1942] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[1506/1942] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[1507/1942] Compiling SwiftGodot NavigationObstacle2D.swift
[1508/1942] Compiling SwiftGodot NavigationObstacle3D.swift
[1509/1942] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[1510/1942] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[1511/1942] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[1512/1942] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[1513/1942] Compiling SwiftGodot NavigationPolygon.swift
[1514/1942] Compiling SwiftGodot NavigationRegion2D.swift
[1515/1942] Compiling SwiftGodot NavigationRegion3D.swift
[1516/1967] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[1517/1967] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[1518/1967] Compiling SwiftGodot VisualShaderNodeRemap.swift
[1519/1967] Compiling SwiftGodot VisualShaderNodeReroute.swift
[1520/1967] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[1521/1967] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[1522/1967] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[1523/1967] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[1524/1967] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[1525/1967] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[1526/1967] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[1527/1967] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[1528/1967] Compiling SwiftGodot VisualShaderNodeStep.swift
[1529/1967] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[1530/1967] Compiling SwiftGodot VisualShaderNodeTexture.swift
[1531/1967] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[1532/1967] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[1533/1967] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[1534/1967] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[1535/1967] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[1536/1967] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[1537/1967] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[1538/1967] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[1539/1967] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[1540/1991] Compiling SwiftGodot VisualShaderNodeInput.swift
[1541/1991] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[1542/1991] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[1543/1991] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[1544/1991] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[1545/1991] Compiling SwiftGodot VisualShaderNodeIs.swift
[1546/1991] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[1547/1991] Compiling SwiftGodot VisualShaderNodeMix.swift
[1548/1991] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[1549/1991] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[1550/1991] Compiling SwiftGodot VisualShaderNodeOutput.swift
[1551/1991] Compiling SwiftGodot VisualShaderNodeParameter.swift
[1552/1991] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[1553/1991] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[1554/1991] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[1555/1991] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[1556/1991] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[1557/1991] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[1558/1991] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[1559/1991] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[1560/1991] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[1561/1991] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[1562/1991] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[1563/1991] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[1564/2015] Compiling SwiftGodot VSlider.swift
[1565/2015] Compiling SwiftGodot VSplitContainer.swift
[1566/2015] Compiling SwiftGodot VehicleBody3D.swift
[1567/2015] Compiling SwiftGodot VehicleWheel3D.swift
[1568/2015] Compiling SwiftGodot VideoStream.swift
[1569/2015] Compiling SwiftGodot VideoStreamPlayback.swift
[1570/2015] Compiling SwiftGodot VideoStreamPlayer.swift
[1571/2015] Compiling SwiftGodot VideoStreamTheora.swift
[1572/2015] Compiling SwiftGodot Viewport.swift
[1573/2015] Compiling SwiftGodot ViewportTexture.swift
[1574/2015] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[1575/2015] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[1576/2015] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[1577/2015] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[1578/2015] Compiling SwiftGodot VisualInstance3D.swift
[1579/2015] Compiling SwiftGodot VisualShader.swift
[1580/2015] Compiling SwiftGodot VisualShaderNode.swift
[1581/2015] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[1582/2015] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[1583/2015] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[1584/2015] Compiling SwiftGodot VisualShaderNodeClamp.swift
[1585/2015] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[1586/2015] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[1587/2015] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[1588/2015] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[1589/2015] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[1590/2015] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[1591/2015] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[1592/2015] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[1593/2015] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[1594/2015] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[1595/2015] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[1596/2015] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[1597/2015] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[1598/2015] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[1599/2015] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[1600/2015] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[1601/2015] Compiling SwiftGodot VisualShaderNodeVarying.swift
[1602/2015] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[1603/2015] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[1604/2015] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[1605/2015] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[1606/2015] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[1607/2015] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[1608/2015] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[1609/2015] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[1610/2015] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[1611/2015] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[1612/2015] Compiling SwiftGodot TextServerManager.swift
[1613/2015] Compiling SwiftGodot Texture.swift
[1614/2015] Compiling SwiftGodot Texture2D.swift
[1615/2015] Compiling SwiftGodot Texture2DArray.swift
[1616/2015] Compiling SwiftGodot Texture2DArrayRD.swift
[1617/2015] Compiling SwiftGodot Texture2DRD.swift
[1618/2015] Compiling SwiftGodot Texture3D.swift
[1619/2015] Compiling SwiftGodot Texture3DRD.swift
[1620/2015] Compiling SwiftGodot TextureButton.swift
[1621/2015] Compiling SwiftGodot TextureCubemapArrayRD.swift
[1622/2015] Compiling SwiftGodot TextureCubemapRD.swift
[1623/2015] Compiling SwiftGodot TextureLayered.swift
[1624/2015] Compiling SwiftGodot TextureLayeredRD.swift
[1625/2015] Compiling SwiftGodot TextureProgressBar.swift
[1626/2015] Compiling SwiftGodot TextureRect.swift
[1627/2015] Compiling SwiftGodot Theme.swift
[1628/2015] Compiling SwiftGodot ThemeDB.swift
[1629/2015] Compiling SwiftGodot Thread.swift
[1630/2015] Compiling SwiftGodot TileData.swift
[1631/2015] Compiling SwiftGodot TileMap.swift
[1632/2015] Compiling SwiftGodot TileMapLayer.swift
[1633/2015] Compiling SwiftGodot TileMapPattern.swift
[1634/2015] Compiling SwiftGodot TileSet.swift
[1635/2015] Compiling SwiftGodot TileSetAtlasSource.swift
[1636/2015] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[1637/2015] Compiling SwiftGodot TileSetSource.swift
[1638/2015] Compiling SwiftGodot Time.swift
[1639/2015] Compiling SwiftGodot Timer.swift
[1640/2015] Compiling SwiftGodot TorusMesh.swift
[1641/2015] Compiling SwiftGodot TouchScreenButton.swift
[1642/2015] Compiling SwiftGodot Translation.swift
[1643/2015] Compiling SwiftGodot TranslationDomain.swift
[1644/2015] Compiling SwiftGodot TranslationServer.swift
[1645/2015] Compiling SwiftGodot Tree.swift
[1646/2015] Compiling SwiftGodot TreeItem.swift
[1647/2015] Compiling SwiftGodot TriangleMesh.swift
[1648/2015] Compiling SwiftGodot TubeTrailMesh.swift
[1649/2015] Compiling SwiftGodot Tween.swift
[1650/2015] Compiling SwiftGodot Tweener.swift
[1651/2015] Compiling SwiftGodot UDPServer.swift
[1652/2015] Compiling SwiftGodot UPNP.swift
[1653/2015] Compiling SwiftGodot UPNPDevice.swift
[1654/2015] Compiling SwiftGodot UndoRedo.swift
[1655/2015] Compiling SwiftGodot UniformSetCacheRD.swift
[1656/2015] Compiling SwiftGodot VBoxContainer.swift
[1657/2015] Compiling SwiftGodot VFlowContainer.swift
[1658/2015] Compiling SwiftGodot VScrollBar.swift
[1659/2015] Compiling SwiftGodot VSeparator.swift
[1660/2015] Compiling SwiftGodot WorldEnvironment.swift
[1661/2015] Compiling SwiftGodot X509Certificate.swift
[1662/2015] Compiling SwiftGodot XMLParser.swift
[1663/2015] Compiling SwiftGodot XRAnchor3D.swift
[1664/2015] Compiling SwiftGodot XRBodyModifier3D.swift
[1665/2015] Compiling SwiftGodot XRBodyTracker.swift
[1666/2015] Compiling SwiftGodot XRCamera3D.swift
[1667/2015] Compiling SwiftGodot XRController3D.swift
[1668/2015] Compiling SwiftGodot XRControllerTracker.swift
[1669/2015] Compiling SwiftGodot XRFaceModifier3D.swift
[1670/2015] Compiling SwiftGodot XRFaceTracker.swift
[1671/2015] Compiling SwiftGodot XRHandModifier3D.swift
[1672/2015] Compiling SwiftGodot XRHandTracker.swift
[1673/2015] Compiling SwiftGodot XRInterface.swift
[1674/2015] Compiling SwiftGodot XRInterfaceExtension.swift
[1675/2015] Compiling SwiftGodot XRNode3D.swift
[1676/2015] Compiling SwiftGodot XROrigin3D.swift
[1677/2015] Compiling SwiftGodot XRPose.swift
[1678/2015] Compiling SwiftGodot XRPositionalTracker.swift
[1679/2015] Compiling SwiftGodot XRServer.swift
[1680/2015] Compiling SwiftGodot XRTracker.swift
[1681/2015] Compiling SwiftGodot XRVRS.swift
[1682/2015] Compiling SwiftGodot ZIPPacker.swift
[1683/2015] Compiling SwiftGodot ZIPReader.swift
[1684/2015] Compiling SwiftGodot PackedScene.swift
[1685/2015] Compiling SwiftGodot PacketPeer.swift
[1686/2015] Compiling SwiftGodot PacketPeerDTLS.swift
[1687/2015] Compiling SwiftGodot PacketPeerExtension.swift
[1688/2015] Compiling SwiftGodot PacketPeerStream.swift
[1689/2015] Compiling SwiftGodot PacketPeerUDP.swift
[1690/2015] Compiling SwiftGodot Panel.swift
[1691/2015] Compiling SwiftGodot PanelContainer.swift
[1692/2015] Compiling SwiftGodot PanoramaSkyMaterial.swift
[1693/2015] Compiling SwiftGodot Parallax2D.swift
[1694/2015] Compiling SwiftGodot ParallaxBackground.swift
[1695/2015] Compiling SwiftGodot ParallaxLayer.swift
[1696/2015] Compiling SwiftGodot ParticleProcessMaterial.swift
[1697/2015] Compiling SwiftGodot Path2D.swift
[1698/2015] Compiling SwiftGodot Path3D.swift
[1699/2015] Compiling SwiftGodot PathFollow2D.swift
[1700/2015] Compiling SwiftGodot PathFollow3D.swift
[1701/2015] Compiling SwiftGodot Performance.swift
[1702/2015] Compiling SwiftGodot PhysicalBone2D.swift
[1703/2015] Compiling SwiftGodot PhysicalBone3D.swift
[1704/2015] Compiling SwiftGodot PhysicalBoneSimulator3D.swift
[1705/2015] Compiling SwiftGodot PhysicalSkyMaterial.swift
[1706/2015] Compiling SwiftGodot PhysicsBody2D.swift
[1707/2015] Compiling SwiftGodot PhysicsBody3D.swift
[1708/2015] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[1709/2040] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[1710/2040] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[1711/2040] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[1712/2040] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[1713/2040] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[1714/2040] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[1715/2040] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[1716/2040] Compiling SwiftGodot VoxelGI.swift
[1717/2040] Compiling SwiftGodot VoxelGIData.swift
[1718/2040] Compiling SwiftGodot WeakRef.swift
[1719/2040] Compiling SwiftGodot WebRTCDataChannel.swift
[1720/2040] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[1721/2040] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[1722/2040] Compiling SwiftGodot WebRTCPeerConnection.swift
[1723/2040] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[1724/2040] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[1725/2040] Compiling SwiftGodot WebSocketPeer.swift
[1726/2040] Compiling SwiftGodot WebXRInterface.swift
[1727/2040] Compiling SwiftGodot Window.swift
[1728/2040] Compiling SwiftGodot WorkerThreadPool.swift
[1729/2040] Compiling SwiftGodot World2D.swift
[1730/2040] Compiling SwiftGodot World3D.swift
[1731/2040] Compiling SwiftGodot WorldBoundaryShape2D.swift
[1732/2040] Compiling SwiftGodot WorldBoundaryShape3D.swift
[1733/2040] Compiling SwiftGodot NavigationServer2D.swift
[1734/2040] Compiling SwiftGodot NavigationServer3D.swift
[1735/2040] Compiling SwiftGodot NinePatchRect.swift
[1736/2040] Compiling SwiftGodot Node.swift
[1737/2040] Compiling SwiftGodot Node2D.swift
[1738/2040] Compiling SwiftGodot Node3D.swift
[1739/2040] Compiling SwiftGodot Node3DGizmo.swift
[1740/2040] Compiling SwiftGodot Noise.swift
[1741/2040] Compiling SwiftGodot NoiseTexture2D.swift
[1742/2040] Compiling SwiftGodot NoiseTexture3D.swift
[1743/2040] Compiling SwiftGodot ORMMaterial3D.swift
[1744/2040] Compiling SwiftGodot OS.swift
[1745/2040] Compiling SwiftGodot Object.swift
[1746/2040] Compiling SwiftGodot Occluder3D.swift
[1747/2040] Compiling SwiftGodot OccluderInstance3D.swift
[1748/2040] Compiling SwiftGodot OccluderPolygon2D.swift
[1749/2040] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[1750/2040] Compiling SwiftGodot OggPacketSequence.swift
[1751/2040] Compiling SwiftGodot OggPacketSequencePlayback.swift
[1752/2040] Compiling SwiftGodot OmniLight3D.swift
[1753/2040] Compiling SwiftGodot OpenXRAPIExtension.swift
[1754/2040] Compiling SwiftGodot OpenXRAction.swift
[1755/2040] Compiling SwiftGodot OpenXRActionBindingModifier.swift
[1756/2040] Compiling SwiftGodot OpenXRActionMap.swift
[1757/2040] Compiling SwiftGodot OpenXRActionSet.swift
[1758/2065] Compiling SwiftGodot PinJoint2D.swift
[1759/2065] Compiling SwiftGodot PinJoint3D.swift
[1760/2065] Compiling SwiftGodot PlaceholderCubemap.swift
[1761/2065] Compiling SwiftGodot PlaceholderCubemapArray.swift
[1762/2065] Compiling SwiftGodot PlaceholderMaterial.swift
[1763/2065] Compiling SwiftGodot PlaceholderMesh.swift
[1764/2065] Compiling SwiftGodot PlaceholderTexture2D.swift
[1765/2065] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[1766/2065] Compiling SwiftGodot PlaceholderTexture3D.swift
[1767/2065] Compiling SwiftGodot PlaceholderTextureLayered.swift
[1768/2065] Compiling SwiftGodot PlaneMesh.swift
[1769/2065] Compiling SwiftGodot PointLight2D.swift
[1770/2065] Compiling SwiftGodot PointMesh.swift
[1771/2065] Compiling SwiftGodot Polygon2D.swift
[1772/2065] Compiling SwiftGodot PolygonOccluder3D.swift
[1773/2065] Compiling SwiftGodot PolygonPathFinder.swift
[1774/2065] Compiling SwiftGodot Popup.swift
[1775/2065] Compiling SwiftGodot PopupMenu.swift
[1776/2065] Compiling SwiftGodot PopupPanel.swift
[1777/2065] Compiling SwiftGodot PortableCompressedTexture2D.swift
[1778/2065] Compiling SwiftGodot PrimitiveMesh.swift
[1779/2065] Compiling SwiftGodot PrismMesh.swift
[1780/2065] Compiling SwiftGodot ProceduralSkyMaterial.swift
[1781/2065] Compiling SwiftGodot ProgressBar.swift
[1782/2065] Compiling SwiftGodot ProjectSettings.swift
[1783/2090] Compiling SwiftGodot StreamPeerTCP.swift
[1784/2090] Compiling SwiftGodot StreamPeerTLS.swift
[1785/2090] Compiling SwiftGodot StyleBox.swift
[1786/2090] Compiling SwiftGodot StyleBoxEmpty.swift
[1787/2090] Compiling SwiftGodot StyleBoxFlat.swift
[1788/2090] Compiling SwiftGodot StyleBoxLine.swift
[1789/2090] Compiling SwiftGodot StyleBoxTexture.swift
[1790/2090] Compiling SwiftGodot SubViewport.swift
[1791/2090] Compiling SwiftGodot SubViewportContainer.swift
[1792/2090] Compiling SwiftGodot SubtweenTweener.swift
[1793/2090] Compiling SwiftGodot SurfaceTool.swift
[1794/2090] Compiling SwiftGodot SyntaxHighlighter.swift
[1795/2090] Compiling SwiftGodot SystemFont.swift
[1796/2090] Compiling SwiftGodot TCPServer.swift
[1797/2090] Compiling SwiftGodot TLSOptions.swift
[1798/2090] Compiling SwiftGodot TabBar.swift
[1799/2090] Compiling SwiftGodot TabContainer.swift
[1800/2090] Compiling SwiftGodot TextEdit.swift
[1801/2090] Compiling SwiftGodot TextLine.swift
[1802/2090] Compiling SwiftGodot TextMesh.swift
[1803/2090] Compiling SwiftGodot TextParagraph.swift
[1804/2090] Compiling SwiftGodot TextServer.swift
[1805/2090] Compiling SwiftGodot TextServerAdvanced.swift
[1806/2090] Compiling SwiftGodot TextServerDummy.swift
[1807/2090] Compiling SwiftGodot TextServerExtension.swift
[1808/2090] Compiling SwiftGodot PropertyTweener.swift
[1809/2090] Compiling SwiftGodot QuadMesh.swift
[1810/2090] Compiling SwiftGodot QuadOccluder3D.swift
[1811/2090] Compiling SwiftGodot RDAttachmentFormat.swift
[1812/2090] Compiling SwiftGodot RDFramebufferPass.swift
[1813/2090] Compiling SwiftGodot RDPipelineColorBlendState.swift
[1814/2090] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[1815/2090] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[1816/2090] Compiling SwiftGodot RDPipelineMultisampleState.swift
[1817/2090] Compiling SwiftGodot RDPipelineRasterizationState.swift
[1818/2090] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[1819/2090] Compiling SwiftGodot RDSamplerState.swift
[1820/2090] Compiling SwiftGodot RDShaderFile.swift
[1821/2090] Compiling SwiftGodot RDShaderSPIRV.swift
[1822/2090] Compiling SwiftGodot RDShaderSource.swift
[1823/2090] Compiling SwiftGodot RDTextureFormat.swift
[1824/2090] Compiling SwiftGodot RDTextureView.swift
[1825/2090] Compiling SwiftGodot RDUniform.swift
[1826/2090] Compiling SwiftGodot RDVertexAttribute.swift
[1827/2090] Compiling SwiftGodot RandomNumberGenerator.swift
[1828/2090] Compiling SwiftGodot Range.swift
[1829/2090] Compiling SwiftGodot RayCast2D.swift
[1830/2090] Compiling SwiftGodot RayCast3D.swift
[1831/2090] Compiling SwiftGodot RectangleShape2D.swift
[1832/2090] Compiling SwiftGodot RefCounted.swift
[1858/2115] Compiling SwiftGodot Basis.swift
[1859/2115] Compiling SwiftGodot Callable.swift
[1860/2115] Compiling SwiftGodot Color.swift
[1861/2115] Compiling SwiftGodot core-defs.swift
[1862/2115] Compiling SwiftGodot Dictionary.swift
[1863/2115] Compiling SwiftGodot NodePath.swift
[1864/2115] Compiling SwiftGodot PackedByteArray.swift
[1865/2115] Compiling SwiftGodot PackedColorArray.swift
[1866/2115] Compiling SwiftGodot PackedFloat32Array.swift
[1867/2115] Compiling SwiftGodot PackedFloat64Array.swift
[1868/2115] Compiling SwiftGodot PackedInt32Array.swift
[1869/2115] Compiling SwiftGodot PackedInt64Array.swift
[1870/2115] Compiling SwiftGodot PackedStringArray.swift
[1871/2115] Compiling SwiftGodot PackedVector2Array.swift
[1872/2115] Compiling SwiftGodot PackedVector3Array.swift
[1873/2115] Compiling SwiftGodot PackedVector4Array.swift
[1874/2115] Compiling SwiftGodot Plane.swift
[1875/2115] Compiling SwiftGodot Projection.swift
[1876/2115] Compiling SwiftGodot Quaternion.swift
[1877/2115] Compiling SwiftGodot Rect2.swift
[1878/2115] Compiling SwiftGodot Rect2i.swift
[1879/2115] Compiling SwiftGodot RID.swift
[1880/2115] Compiling SwiftGodot Signal.swift
[1881/2115] Compiling SwiftGodot String.swift
[1882/2115] Compiling SwiftGodot StringName.swift
[1883/2115] Compiling SwiftGodot AtlasTexture.swift
[1884/2115] Compiling SwiftGodot AudioBusLayout.swift
[1885/2115] Compiling SwiftGodot AudioEffect.swift
[1886/2115] Compiling SwiftGodot AudioEffectAmplify.swift
[1887/2115] Compiling SwiftGodot AudioEffectBandLimitFilter.swift
[1888/2115] Compiling SwiftGodot AudioEffectBandPassFilter.swift
[1889/2115] Compiling SwiftGodot AudioEffectCapture.swift
[1890/2115] Compiling SwiftGodot AudioEffectChorus.swift
[1891/2115] Compiling SwiftGodot AudioEffectCompressor.swift
[1892/2115] Compiling SwiftGodot AudioEffectDelay.swift
[1893/2115] Compiling SwiftGodot AudioEffectDistortion.swift
[1894/2115] Compiling SwiftGodot AudioEffectEQ.swift
[1895/2115] Compiling SwiftGodot AudioEffectEQ10.swift
[1896/2115] Compiling SwiftGodot AudioEffectEQ21.swift
[1897/2115] Compiling SwiftGodot AudioEffectEQ6.swift
[1898/2115] Compiling SwiftGodot AudioEffectFilter.swift
[1899/2115] Compiling SwiftGodot AudioEffectHardLimiter.swift
[1900/2115] Compiling SwiftGodot AudioEffectHighPassFilter.swift
[1901/2115] Compiling SwiftGodot AudioEffectHighShelfFilter.swift
[1902/2115] Compiling SwiftGodot AudioEffectInstance.swift
[1903/2115] Compiling SwiftGodot AudioEffectLimiter.swift
[1904/2115] Compiling SwiftGodot AudioEffectLowPassFilter.swift
[1905/2115] Compiling SwiftGodot AudioEffectLowShelfFilter.swift
[1906/2115] Compiling SwiftGodot AudioEffectNotchFilter.swift
[1907/2115] Compiling SwiftGodot AudioEffectPanner.swift
[1933/2115] Emitting module SwiftGodot
[2035/2287] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[2036/2287] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[2037/2287] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[2038/2287] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[2039/2287] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[2040/2287] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[2041/2287] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[2042/2287] Compiling SwiftGodot PhysicsMaterial.swift
[2043/2287] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[2044/2287] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[2045/2287] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[2046/2287] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[2047/2287] Compiling SwiftGodot PhysicsServer2D.swift
[2048/2287] Compiling SwiftGodot PhysicsServer2DExtension.swift
[2049/2287] Compiling SwiftGodot PhysicsServer2DManager.swift
[2050/2287] Compiling SwiftGodot PhysicsServer3D.swift
[2051/2287] Compiling SwiftGodot PhysicsServer3DExtension.swift
[2052/2287] Compiling SwiftGodot PhysicsServer3DManager.swift
[2053/2287] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[2054/2287] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[2055/2287] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[2056/2287] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[2057/2287] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[2058/2287] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[2059/2287] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[2060/2321] Compiling SwiftGodot ResourceImporterBMFont.swift
[2061/2321] Compiling SwiftGodot ResourceImporterBitMap.swift
[2062/2321] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
[2063/2321] Compiling SwiftGodot ResourceImporterDynamicFont.swift
[2064/2321] Compiling SwiftGodot ResourceImporterImage.swift
[2065/2321] Compiling SwiftGodot ResourceImporterImageFont.swift
[2066/2321] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
[2067/2321] Compiling SwiftGodot ResourceImporterMP3.swift
[2068/2321] Compiling SwiftGodot ResourceImporterOBJ.swift
[2069/2321] Compiling SwiftGodot ResourceImporterOggVorbis.swift
[2070/2321] Compiling SwiftGodot ResourceImporterScene.swift
[2071/2321] Compiling SwiftGodot ResourceImporterShaderFile.swift
[2072/2321] Compiling SwiftGodot ResourceImporterTexture.swift
[2073/2321] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
[2074/2321] Compiling SwiftGodot ResourceImporterWAV.swift
[2075/2321] Compiling SwiftGodot ResourceLoader.swift
[2076/2321] Compiling SwiftGodot ResourcePreloader.swift
[2077/2321] Compiling SwiftGodot ResourceSaver.swift
[2078/2321] Compiling SwiftGodot ResourceUID.swift
[2079/2321] Compiling SwiftGodot RetargetModifier3D.swift
[2080/2321] Compiling SwiftGodot RibbonTrailMesh.swift
[2081/2321] Compiling SwiftGodot RichTextEffect.swift
[2082/2321] Compiling SwiftGodot RichTextLabel.swift
[2083/2321] Compiling SwiftGodot RigidBody2D.swift
[2084/2321] Compiling SwiftGodot RigidBody3D.swift
[2085/2345] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[2086/2345] Compiling SwiftGodot VisualShaderNodeComment.swift
[2087/2345] Compiling SwiftGodot VisualShaderNodeCompare.swift
[2088/2345] Compiling SwiftGodot VisualShaderNodeConstant.swift
[2089/2345] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[2090/2345] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[2091/2345] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[2092/2345] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[2093/2345] Compiling SwiftGodot VisualShaderNodeCustom.swift
[2094/2345] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[2095/2345] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[2096/2345] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[2097/2345] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[2098/2345] Compiling SwiftGodot VisualShaderNodeExpression.swift
[2099/2345] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[2100/2345] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[2101/2345] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[2102/2345] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[2103/2345] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[2104/2345] Compiling SwiftGodot VisualShaderNodeFrame.swift
[2105/2345] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[2106/2345] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[2107/2345] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[2108/2345] Compiling SwiftGodot VisualShaderNodeIf.swift
[2109/2369] Compiling SwiftGodot VisualShaderNodeInput.swift
[2110/2369] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[2111/2369] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[2112/2369] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[2113/2369] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[2114/2369] Compiling SwiftGodot VisualShaderNodeIs.swift
[2115/2369] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[2116/2369] Compiling SwiftGodot VisualShaderNodeMix.swift
[2117/2369] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[2118/2369] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[2119/2369] Compiling SwiftGodot VisualShaderNodeOutput.swift
[2120/2369] Compiling SwiftGodot VisualShaderNodeParameter.swift
[2121/2369] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[2122/2369] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[2123/2369] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[2124/2369] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[2125/2369] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[2126/2369] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[2127/2369] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[2128/2369] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[2129/2369] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[2130/2369] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[2131/2369] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[2132/2369] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[2133/2393] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[2134/2393] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[2135/2393] Compiling SwiftGodot VisualShaderNodeRemap.swift
[2136/2393] Compiling SwiftGodot VisualShaderNodeReroute.swift
[2137/2393] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[2138/2393] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[2139/2393] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[2140/2393] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[2141/2393] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[2142/2393] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[2143/2393] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[2144/2393] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[2145/2393] Compiling SwiftGodot VisualShaderNodeStep.swift
[2146/2393] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[2147/2393] Compiling SwiftGodot VisualShaderNodeTexture.swift
[2148/2393] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[2149/2393] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[2150/2393] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[2151/2393] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[2152/2393] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[2153/2393] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[2154/2393] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[2155/2393] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[2156/2393] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[2157/2417] Compiling SwiftGodot VSlider.swift
[2158/2417] Compiling SwiftGodot VSplitContainer.swift
[2159/2417] Compiling SwiftGodot VehicleBody3D.swift
[2160/2417] Compiling SwiftGodot VehicleWheel3D.swift
[2161/2417] Compiling SwiftGodot VideoStream.swift
[2162/2417] Compiling SwiftGodot VideoStreamPlayback.swift
[2163/2417] Compiling SwiftGodot VideoStreamPlayer.swift
[2164/2417] Compiling SwiftGodot VideoStreamTheora.swift
[2165/2417] Compiling SwiftGodot Viewport.swift
[2166/2417] Compiling SwiftGodot ViewportTexture.swift
[2167/2417] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[2168/2417] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[2169/2417] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[2170/2417] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[2171/2417] Compiling SwiftGodot VisualInstance3D.swift
[2172/2417] Compiling SwiftGodot VisualShader.swift
[2173/2417] Compiling SwiftGodot VisualShaderNode.swift
[2174/2417] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[2175/2417] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[2176/2417] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[2177/2417] Compiling SwiftGodot VisualShaderNodeClamp.swift
[2178/2417] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[2179/2417] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[2180/2417] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[2181/2441] Compiling SwiftGodot RootMotionView.swift
[2182/2441] Compiling SwiftGodot SceneMultiplayer.swift
[2183/2441] Compiling SwiftGodot SceneReplicationConfig.swift
[2184/2441] Compiling SwiftGodot SceneState.swift
[2185/2441] Compiling SwiftGodot SceneTree.swift
[2186/2441] Compiling SwiftGodot SceneTreeTimer.swift
[2187/2441] Compiling SwiftGodot Script.swift
[2188/2441] Compiling SwiftGodot ScriptCreateDialog.swift
[2189/2441] Compiling SwiftGodot ScriptEditor.swift
[2190/2441] Compiling SwiftGodot ScriptEditorBase.swift
[2191/2441] Compiling SwiftGodot ScriptExtension.swift
[2192/2441] Compiling SwiftGodot ScriptLanguage.swift
[2193/2441] Compiling SwiftGodot ScriptLanguageExtension.swift
[2194/2441] Compiling SwiftGodot ScrollBar.swift
[2195/2441] Compiling SwiftGodot ScrollContainer.swift
[2196/2441] Compiling SwiftGodot SegmentShape2D.swift
[2197/2441] Compiling SwiftGodot Semaphore.swift
[2198/2441] Compiling SwiftGodot SeparationRayShape2D.swift
[2199/2441] Compiling SwiftGodot SeparationRayShape3D.swift
[2200/2441] Compiling SwiftGodot Separator.swift
[2201/2441] Compiling SwiftGodot Shader.swift
[2202/2441] Compiling SwiftGodot ShaderGlobalsOverride.swift
[2203/2441] Compiling SwiftGodot ShaderInclude.swift
[2204/2441] Compiling SwiftGodot ShaderIncludeDB.swift
[2205/2441] Compiling SwiftGodot ShaderMaterial.swift
[2206/2441] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[2207/2441] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[2208/2441] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[2209/2441] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[2210/2441] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[2211/2441] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[2212/2441] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[2213/2441] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[2214/2441] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[2215/2441] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[2216/2441] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[2217/2441] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[2218/2441] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[2219/2441] Compiling SwiftGodot VisualShaderNodeVarying.swift
[2220/2441] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[2221/2441] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[2222/2441] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[2223/2441] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[2224/2441] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[2225/2441] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[2226/2441] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[2227/2441] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[2228/2441] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[2229/2441] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[2230/2441] Compiling SwiftGodot SoftBody3D.swift
[2231/2441] Compiling SwiftGodot SphereMesh.swift
[2232/2441] Compiling SwiftGodot SphereOccluder3D.swift
[2233/2441] Compiling SwiftGodot SphereShape3D.swift
[2234/2441] Compiling SwiftGodot SpinBox.swift
[2235/2441] Compiling SwiftGodot SplitContainer.swift
[2236/2441] Compiling SwiftGodot SpotLight3D.swift
[2237/2441] Compiling SwiftGodot SpringArm3D.swift
[2238/2441] Compiling SwiftGodot SpringBoneCollision3D.swift
[2239/2441] Compiling SwiftGodot SpringBoneCollisionCapsule3D.swift
[2240/2441] Compiling SwiftGodot SpringBoneCollisionPlane3D.swift
[2241/2441] Compiling SwiftGodot SpringBoneCollisionSphere3D.swift
[2242/2441] Compiling SwiftGodot SpringBoneSimulator3D.swift
[2243/2441] Compiling SwiftGodot Sprite2D.swift
[2244/2441] Compiling SwiftGodot Sprite3D.swift
[2245/2441] Compiling SwiftGodot SpriteBase3D.swift
[2246/2441] Compiling SwiftGodot SpriteFrames.swift
[2247/2441] Compiling SwiftGodot StandardMaterial3D.swift
[2248/2441] Compiling SwiftGodot StaticBody2D.swift
[2249/2441] Compiling SwiftGodot StaticBody3D.swift
[2250/2441] Compiling SwiftGodot StatusIndicator.swift
[2251/2441] Compiling SwiftGodot StreamPeer.swift
[2252/2441] Compiling SwiftGodot StreamPeerBuffer.swift
[2253/2441] Compiling SwiftGodot StreamPeerExtension.swift
[2254/2441] Compiling SwiftGodot StreamPeerGZIP.swift
[2255/2441] Compiling SwiftGodot Shape2D.swift
[2256/2441] Compiling SwiftGodot Shape3D.swift
[2257/2441] Compiling SwiftGodot ShapeCast2D.swift
[2258/2441] Compiling SwiftGodot ShapeCast3D.swift
[2259/2441] Compiling SwiftGodot Shortcut.swift
[2260/2441] Compiling SwiftGodot Skeleton2D.swift
[2261/2441] Compiling SwiftGodot Skeleton3D.swift
[2262/2441] Compiling SwiftGodot SkeletonIK3D.swift
[2263/2441] Compiling SwiftGodot SkeletonModification2D.swift
[2264/2441] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[2265/2441] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[2266/2441] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[2267/2441] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[2268/2441] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[2269/2441] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[2270/2441] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[2271/2441] Compiling SwiftGodot SkeletonModificationStack2D.swift
[2272/2441] Compiling SwiftGodot SkeletonModifier3D.swift
[2273/2441] Compiling SwiftGodot SkeletonProfile.swift
[2274/2441] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[2275/2441] Compiling SwiftGodot Skin.swift
[2276/2441] Compiling SwiftGodot SkinReference.swift
[2277/2441] Compiling SwiftGodot Sky.swift
[2278/2441] Compiling SwiftGodot Slider.swift
[2279/2441] Compiling SwiftGodot SliderJoint3D.swift
[2280/2441] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[2281/2441] Compiling SwiftGodot TileSetSource.swift
[2282/2441] Compiling SwiftGodot Time.swift
[2283/2441] Compiling SwiftGodot Timer.swift
[2284/2441] Compiling SwiftGodot TorusMesh.swift
[2285/2441] Compiling SwiftGodot TouchScreenButton.swift
[2286/2441] Compiling SwiftGodot Translation.swift
[2287/2441] Compiling SwiftGodot TranslationDomain.swift
[2288/2441] Compiling SwiftGodot TranslationServer.swift
[2289/2441] Compiling SwiftGodot Tree.swift
[2290/2441] Compiling SwiftGodot TreeItem.swift
[2291/2441] Compiling SwiftGodot TriangleMesh.swift
[2292/2441] Compiling SwiftGodot TubeTrailMesh.swift
[2293/2441] Compiling SwiftGodot Tween.swift
[2294/2441] Compiling SwiftGodot Tweener.swift
[2295/2441] Compiling SwiftGodot UDPServer.swift
[2296/2441] Compiling SwiftGodot UPNP.swift
[2297/2441] Compiling SwiftGodot UPNPDevice.swift
[2298/2441] Compiling SwiftGodot UndoRedo.swift
[2299/2441] Compiling SwiftGodot UniformSetCacheRD.swift
[2300/2441] Compiling SwiftGodot VBoxContainer.swift
[2301/2441] Compiling SwiftGodot VFlowContainer.swift
[2302/2441] Compiling SwiftGodot VScrollBar.swift
[2303/2441] Compiling SwiftGodot VSeparator.swift
[2304/2441] Compiling SwiftGodot TextServerManager.swift
[2305/2441] Compiling SwiftGodot Texture.swift
[2306/2441] Compiling SwiftGodot Texture2D.swift
[2307/2441] Compiling SwiftGodot Texture2DArray.swift
[2308/2441] Compiling SwiftGodot Texture2DArrayRD.swift
[2309/2441] Compiling SwiftGodot Texture2DRD.swift
[2310/2441] Compiling SwiftGodot Texture3D.swift
[2311/2441] Compiling SwiftGodot Texture3DRD.swift
[2312/2441] Compiling SwiftGodot TextureButton.swift
[2313/2441] Compiling SwiftGodot TextureCubemapArrayRD.swift
[2314/2441] Compiling SwiftGodot TextureCubemapRD.swift
[2315/2441] Compiling SwiftGodot TextureLayered.swift
[2316/2441] Compiling SwiftGodot TextureLayeredRD.swift
[2317/2441] Compiling SwiftGodot TextureProgressBar.swift
[2318/2441] Compiling SwiftGodot TextureRect.swift
[2319/2441] Compiling SwiftGodot Theme.swift
[2320/2441] Compiling SwiftGodot ThemeDB.swift
[2321/2441] Compiling SwiftGodot Thread.swift
[2322/2441] Compiling SwiftGodot TileData.swift
[2323/2441] Compiling SwiftGodot TileMap.swift
[2324/2441] Compiling SwiftGodot TileMapLayer.swift
[2325/2441] Compiling SwiftGodot TileMapPattern.swift
[2326/2441] Compiling SwiftGodot TileSet.swift
[2327/2441] Compiling SwiftGodot TileSetAtlasSource.swift
[2328/2441] Compiling SwiftGodot ReferenceRect.swift
[2329/2441] Compiling SwiftGodot ReflectionProbe.swift
[2330/2441] Compiling SwiftGodot RegEx.swift
[2331/2441] Compiling SwiftGodot RegExMatch.swift
[2332/2441] Compiling SwiftGodot RemoteTransform2D.swift
[2333/2441] Compiling SwiftGodot RemoteTransform3D.swift
[2334/2441] Compiling SwiftGodot RenderData.swift
[2335/2441] Compiling SwiftGodot RenderDataExtension.swift
[2336/2441] Compiling SwiftGodot RenderDataRD.swift
[2337/2441] Compiling SwiftGodot RenderSceneBuffers.swift
[2338/2441] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
[2339/2441] Compiling SwiftGodot RenderSceneBuffersExtension.swift
[2340/2441] Compiling SwiftGodot RenderSceneBuffersRD.swift
[2341/2441] Compiling SwiftGodot RenderSceneData.swift
[2342/2441] Compiling SwiftGodot RenderSceneDataExtension.swift
[2343/2441] Compiling SwiftGodot RenderSceneDataRD.swift
[2344/2441] Compiling SwiftGodot RenderingDevice.swift
[2345/2441] Compiling SwiftGodot RenderingNativeSurface.swift
[2346/2441] Compiling SwiftGodot RenderingNativeSurfaceApple.swift
[2347/2441] Compiling SwiftGodot RenderingNativeSurfaceVulkan.swift
[2348/2441] Compiling SwiftGodot RenderingServer.swift
[2349/2441] Compiling SwiftGodot Resource.swift
[2350/2441] Compiling SwiftGodot ResourceFormatLoader.swift
[2351/2441] Compiling SwiftGodot ResourceFormatSaver.swift
[2352/2441] Compiling SwiftGodot ResourceImporter.swift
[2353/2441] Compiling SwiftGodot WorldEnvironment.swift
[2354/2441] Compiling SwiftGodot X509Certificate.swift
[2355/2441] Compiling SwiftGodot XMLParser.swift
[2356/2441] Compiling SwiftGodot XRAnchor3D.swift
[2357/2441] Compiling SwiftGodot XRBodyModifier3D.swift
[2358/2441] Compiling SwiftGodot XRBodyTracker.swift
[2359/2441] Compiling SwiftGodot XRCamera3D.swift
[2360/2441] Compiling SwiftGodot XRController3D.swift
[2361/2441] Compiling SwiftGodot XRControllerTracker.swift
[2362/2441] Compiling SwiftGodot XRFaceModifier3D.swift
[2363/2441] Compiling SwiftGodot XRFaceTracker.swift
[2364/2441] Compiling SwiftGodot XRHandModifier3D.swift
[2365/2441] Compiling SwiftGodot XRHandTracker.swift
[2366/2441] Compiling SwiftGodot XRInterface.swift
[2367/2441] Compiling SwiftGodot XRInterfaceExtension.swift
[2368/2441] Compiling SwiftGodot XRNode3D.swift
[2369/2441] Compiling SwiftGodot XROrigin3D.swift
[2370/2441] Compiling SwiftGodot XRPose.swift
[2371/2441] Compiling SwiftGodot XRPositionalTracker.swift
[2372/2441] Compiling SwiftGodot XRServer.swift
[2373/2441] Compiling SwiftGodot XRTracker.swift
[2374/2441] Compiling SwiftGodot XRVRS.swift
[2375/2441] Compiling SwiftGodot ZIPPacker.swift
[2376/2441] Compiling SwiftGodot ZIPReader.swift
[2377/2441] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[2378/2441] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[2379/2441] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[2380/2441] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[2381/2441] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[2382/2441] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[2383/2441] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[2384/2441] Compiling SwiftGodot VoxelGI.swift
[2385/2441] Compiling SwiftGodot VoxelGIData.swift
[2386/2441] Compiling SwiftGodot WeakRef.swift
[2387/2441] Compiling SwiftGodot WebRTCDataChannel.swift
[2388/2441] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[2389/2441] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[2390/2441] Compiling SwiftGodot WebRTCPeerConnection.swift
[2391/2441] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[2392/2441] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[2393/2441] Compiling SwiftGodot WebSocketPeer.swift
[2394/2441] Compiling SwiftGodot WebXRInterface.swift
[2395/2441] Compiling SwiftGodot Window.swift
[2396/2441] Compiling SwiftGodot WorkerThreadPool.swift
[2397/2441] Compiling SwiftGodot World2D.swift
[2398/2441] Compiling SwiftGodot World3D.swift
[2399/2441] Compiling SwiftGodot WorldBoundaryShape2D.swift
[2400/2441] Compiling SwiftGodot WorldBoundaryShape3D.swift
[2401/2441] Compiling SwiftGodotTestability GodotTestHost.swift
[2402/2441] Compiling SwiftGodotTestability SimpleTestHost.swift
[2403/2441] Compiling SwiftGodotTestability TestHost.swift
[2404/2441] Compiling SwiftGodotTestability EmbeddingController.swift
[2405/2441] Compiling SwiftGodotTestability SilentTestRun.swift
[2406/2441] Compiling SwiftGodotTestability EmbeddedTestCase.swift
[2407/2441] Compiling SwiftGodotTestability EmbeddedTestCaseSuite.swift
[2408/2441] Emitting module SwiftGodotTestability
[2409/2441] Compiling SwiftGodotTestability GodotTestCase.swift
[2410/2441] 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