Skip to content

Commit

Permalink
update internal boilerplate code.
Browse files Browse the repository at this point in the history
  • Loading branch information
art-divin committed Dec 29, 2024
1 parent 75836f0 commit 5ef95cf
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion SourceryRuntime/Sources/Generated/Coding.generated.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace trailing_newline

Expand Down
2 changes: 1 addition & 1 deletion SourceryRuntime/Sources/Generated/JSExport.generated.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace trailing_newline

Expand Down
2 changes: 1 addition & 1 deletion SourceryRuntime/Sources/Generated/Typed.generated.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace

Expand Down
6 changes: 3 additions & 3 deletions SourcerySwift/Sources/SourceryRuntime.content.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7754,7 +7754,7 @@ public final class Variable: NSObject, SourceryModel, Typed, Annotated, Document
"""),
.init(name: "Coding.generated.swift", content:
"""
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace trailing_newline
Expand Down Expand Up @@ -7860,7 +7860,7 @@ extension Variable: NSCoding {}
"""),
.init(name: "JSExport.generated.swift", content:
"""
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace trailing_newline
Expand Down Expand Up @@ -8599,7 +8599,7 @@ extension Variable: VariableAutoJSExport {}
"""),
.init(name: "Typed.generated.swift", content:
"""
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ public enum Composer {
if baseType is Class {
type.inherits[baseType.name] = baseType
} else if let `protocol` = baseType as? SourceryProtocol {
type.implements[baseType.name] = baseType
type.implements[baseType.globalName] = baseType
if let extendingProtocol = type as? SourceryProtocol {
`protocol`.associatedTypes.forEach {
if extendingProtocol.associatedTypes[$0.key] == nil {
Expand Down Expand Up @@ -5128,6 +5128,8 @@ public class MethodParameter: NSObject, SourceryModel, Typed, Annotated, Diffabl
return asSource
case "index":
return index
case "isOptional":
return isOptional
default:
fatalError("unable to lookup: \\(member) in \\(self)")
}
Expand Down Expand Up @@ -8337,7 +8339,7 @@ public final class Variable: NSObject, SourceryModel, Typed, Annotated, Document
"""),
.init(name: "Coding.generated.swift", content:
"""
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace trailing_newline
Expand Down Expand Up @@ -8443,7 +8445,7 @@ extension Variable: NSCoding {}
"""),
.init(name: "JSExport.generated.swift", content:
"""
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace trailing_newline
Expand Down Expand Up @@ -9182,7 +9184,7 @@ extension Variable: VariableAutoJSExport {}
"""),
.init(name: "Typed.generated.swift", content:
"""
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// swiftlint:disable vertical_whitespace
Expand Down
2 changes: 1 addition & 1 deletion SourceryTests/Models/TypedSpec.generated.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated using Sourcery 2.2.5 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 2.2.6 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
import Quick
import Nimble
Expand Down

0 comments on commit 5ef95cf

Please sign in to comment.