在 Haskell/Parsec 中引发 ParseError

发布于 2024-08-11 05:51:58 字数 165 浏览 4 评论 0原文

在秒差距中引发错误 (ParseError) 的首选方法是什么?我在解析器中获取了一些执行检查的代码,如果检查失败,则应返回 ParseError (即运行 parse 时的 Left ParseError) 。

What is the prefered way to raise errors (ParseError) in Parsec? I got some code inside a parser that performs a check and if the check fails a ParseError should be returned (i.e. Left ParseError when running parse).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听你说爱我 2024-08-18 05:51:58

您可以使用 Text.ParserCombinators.Parsec.Prim.unexpectedControl.Monad.fail 为此。两者都采用一个 String 参数来表示错误消息,并且将返回(在本例中)一个 GenParser tok st a 类型的值。

有关更多信息,请参阅 Text.ParserCombinators.Parsec.Error,特别是消息。在那里您可以阅读在哪种情况下使用哪个函数(尽管两者都表示解析错误,但它们在语义上略有不同)。

You can use Text.ParserCombinators.Parsec.Prim.unexpected and Control.Monad.fail for this. Both take a String argument signifying the error message and will return (in this case) a value of type GenParser tok st a.

For more, see Text.ParserCombinators.Parsec.Error, specifically Message. There you can read which function to use in which case (though both signify a parse error, they are semantically slightly different).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文