Skip to content

Commit dc9f279

Browse files
committed
Split line in swift-parser-test.swift to disambiguate it as not being a regex literal for the new parser
1 parent 1c8964e commit dc9f279

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Sources/swift-parser-test/swift-parser-test.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,10 @@ class Reduce: ParsableCommand {
269269
printerr("Current source size \(reduced.count), reducing with chunk size \(chunkSize)")
270270
}
271271
reduced = try reduceImpl(source: reduced, chunkSize: chunkSize, testPasses: testPasses)
272-
chunkSize = min(reduced.count / 2, chunkSize / 2)
272+
chunkSize = min(
273+
reduced.count / 2,
274+
chunkSize / 2
275+
)
273276
}
274277
return reduced
275278
}

0 commit comments

Comments
 (0)