This commit is contained in:
Florian Schroedl
2022-05-04 17:00:00 +02:00
parent 31844ed68d
commit 2e57ff5129

View File

@@ -209,11 +209,11 @@ proc applyParsersSeqToSingle*[T](
): BuilderResult[T] = ): BuilderResult[T] =
xs.foldl( xs.foldl(
a.flatMap((builder: Builder[T]) => applyParsersToSingle( a.flatMap((builder: Builder[T]) => applyParsersToSingle(
builder, builder = builder,
b.parsers, parsers = b.parsers,
b.tokenFoldFn, tokenFoldFn = b.tokenFoldFn,
b.ignoreEmpty, optional = b.ignoreEmpty,
initT, initT = initT,
isFirst = a == builderResult isFirst = a == builderResult
)), )),
builderResult builderResult