Skip to content

Commit 7a19dca

Browse files
committed
Re-run swift-format and CodeGeneration
1 parent 93e917b commit 7a19dca

File tree

3 files changed

+116
-105
lines changed

3 files changed

+116
-105
lines changed

Sources/SwiftParser/Parser.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,12 @@ public struct Parser {
145145
/// arena is created automatically, and `input` copied into the
146146
/// arena. If non-`nil`, `input` must be within its registered
147147
/// source buffer or allocator.
148-
public init(_ input: UnsafeBufferPointer<UInt8>, maximumNestingLevel: Int? = nil, arena: ParsingSyntaxArena? = nil, parseTransition: IncrementalParseTransition? = nil) {
148+
public init(
149+
_ input: UnsafeBufferPointer<UInt8>,
150+
maximumNestingLevel: Int? = nil,
151+
arena: ParsingSyntaxArena? = nil,
152+
parseTransition: IncrementalParseTransition? = nil
153+
) {
149154
self.maximumNestingLevel = maximumNestingLevel ?? Self.defaultMaximumNestingLevel
150155

151156
var sourceBuffer: UnsafeBufferPointer<UInt8>

0 commit comments

Comments
 (0)