Add a now missing case to handle parse failures

This commit is contained in:
Eike Kettner 2021-05-16 22:49:20 +02:00
parent 2768223054
commit 283e80bc47

View File

@ -10,6 +10,7 @@ import cats.parse.Parser.Expectation.InRange
import cats.parse.Parser.Expectation.Length
import cats.parse.Parser.Expectation.OneOfStr
import cats.parse.Parser.Expectation.StartOfString
import cats.parse.Parser.Expectation.WithContext
final case class ParseFailure(
input: String,
@ -101,5 +102,8 @@ object ParseFailure {
case OneOfStr(offset, strs) =>
val options = strs.take(8)
ExpectMessage(offset, options.take(7), options.size < 8)
case WithContext(ctx, expect) =>
ExpectMessage(expect.offset, s"Failed to parse near: $ctx" :: Nil, true)
}
}