Skip to content

Commit fda0226

Browse files
stephencelisgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent ff7bf55 commit fda0226

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

Sources/Parsing/Builders/ParserBuilder.swift

+11-10
Original file line numberDiff line numberDiff line change
@@ -127,23 +127,23 @@ public enum ParserBuilder<Input> {
127127
where P0.Input == Input, P1.Input == Input {
128128
.init(accumulated, next)
129129
}
130-
130+
131131
@inlinable
132132
public static func buildPartialBlock<P0, P1>(accumulated: P0, next: P1) -> SkipSecond<P0, P1>
133133
where P0.Input == Input, P1.Input == Input {
134134
.init(accumulated, next)
135135
}
136-
136+
137137
@_disfavoredOverload
138138
public static func buildPartialBlock<P0: Parser, P1: Parser, each O1, O2>(
139139
accumulated: P0,
140140
next: P1
141141
) -> Take2<P0, P1>.Map<(repeat each O1, O2)>
142142
where
143-
P0.Input == Input,
144-
P1.Input == Input,
145-
P0.Output == (repeat each O1),
146-
P1.Output == O2
143+
P0.Input == Input,
144+
P1.Input == Input,
145+
P0.Output == (repeat each O1),
146+
P1.Output == O2
147147
{
148148
Take2(accumulated, next)
149149
.map { tuple, next in
@@ -232,7 +232,6 @@ extension ParserBuilder.Take2: ParserPrinter where P0: ParserPrinter, P1: Parser
232232
}
233233
}
234234

235-
236235
extension ParserBuilder where Input == Substring {
237236
@_disfavoredOverload
238237
public static func buildExpression<P: Parser>(_ expression: P)
@@ -256,14 +255,16 @@ extension ParserBuilder.Take2 {
256255
public struct Map<NewOutput>: Parser where P0.Input == P1.Input {
257256
let upstream: ParserBuilder.Take2<P0, P1>
258257
let transform: (P0.Output, P1.Output) -> NewOutput
259-
258+
260259
public func parse(_ input: inout P0.Input) throws -> NewOutput {
261260
let (first, second) = try upstream.parse(&input)
262261
return transform(first, second)
263262
}
264263
}
265-
266-
public func map<NewOutput>(_ transform: @escaping (P0.Output, P1.Output) -> NewOutput) -> Map<NewOutput> {
264+
265+
public func map<NewOutput>(_ transform: @escaping (P0.Output, P1.Output) -> NewOutput) -> Map<
266+
NewOutput
267+
> {
267268
Map(upstream: self, transform: transform)
268269
}
269270
}

Tests/ParsingTests/VariadicTests.swift

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import XCTest
44
final class Over11Tests: XCTestCase {
55
func testOver11() throws {
66
struct ParserTest: Parser {
7-
var body: some Parser<Substring, (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)> {
7+
var body: some Parser<Substring, (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)>
8+
{
89
Digits()
910
"."
1011
Digits()
@@ -30,9 +31,10 @@ final class Over11Tests: XCTestCase {
3031
Digits()
3132
}
3233
}
33-
34+
3435
var input = "1.2.3.4.5.6.7.8.9.10.11.12"[...]
35-
let output: (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int) = try ParserTest().parse(&input)
36+
let output: (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int) = try ParserTest()
37+
.parse(&input)
3638
XCTAssertEqual(output.0, 1)
3739
XCTAssertEqual(output.1, 2)
3840
XCTAssertEqual(output.2, 3)

0 commit comments

Comments
 (0)