Skip to content

Commit

Permalink
Run swift-format
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis authored and actions-user committed Feb 8, 2022
1 parent 819f9d2 commit 7cba8c3
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions Sources/Parsing/Builders/Variadics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6950,7 +6950,9 @@ extension Parsers {
{
public let p0: P0, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7

@inlinable public init(_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7) {
@inlinable public init(
_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7
) {
self.p0 = p0
self.p1 = p1
self.p2 = p2
Expand Down Expand Up @@ -7046,7 +7048,9 @@ extension Parsers {
{
public let p0: P0, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8

@inlinable public init(_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7, _ p8: P8) {
@inlinable public init(
_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7, _ p8: P8
) {
self.p0 = p0
self.p1 = p1
self.p2 = p2
Expand Down Expand Up @@ -7151,7 +7155,10 @@ extension Parsers {
{
public let p0: P0, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9

@inlinable public init(_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7, _ p8: P8, _ p9: P9) {
@inlinable public init(
_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7, _ p8: P8,
_ p9: P9
) {
self.p0 = p0
self.p1 = p1
self.p2 = p2
Expand Down Expand Up @@ -7222,7 +7229,8 @@ extension Parsers {

extension OneOfBuilder {
@inlinable public static func buildBlock<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9>(
_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7, _ p8: P8, _ p9: P9
_ p0: P0, _ p1: P1, _ p2: P2, _ p3: P3, _ p4: P4, _ p5: P5, _ p6: P6, _ p7: P7, _ p8: P8,
_ p9: P9
) -> Parsers.OneOf10<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> {
Parsers.OneOf10(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)
}
Expand Down

0 comments on commit 7cba8c3

Please sign in to comment.