Tagged Questions

2
votes
1answer
32 views

Raise ParseError in Haskell/Parsec

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. …
0
votes
3answers
51 views

Haskell Parsec compile error

I've installed Haskell via the pre built installer v6.8.2. When trying to compile this sample file with GHC module Main where import Text.ParserCombinators.Parsec import System.E …
5
votes
2answers
631 views

A good ocaml parser?

Hi, I'm looking for a good ocaml parsing library that isn't a derivative of flex/bison. Ideally, I'd like a monadic combinator library along the lines of parsec, but I can't find a …
5
votes
6answers
577 views

Python implementation of Parsec?

I recently wrote a parser in Python using Ply (it's a python reimplementation of yacc). When I was almost done with the parser I discovered that the grammar I need to parse requir …