mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-12-21 15:21:34 +03:00
20 lines
554 B
Haskell
20 lines
554 B
Haskell
-----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : Text.ParserCombinators.Parsec.Error
|
|
-- Copyright : (c) Paolo Martini 2007
|
|
-- License : BSD-style (see the LICENSE file)
|
|
--
|
|
-- Maintainer : paolo@nemail.it
|
|
-- Stability : provisional
|
|
-- Portability : portable
|
|
--
|
|
-- Parsec compatibility module
|
|
--
|
|
-----------------------------------------------------------------------------
|
|
|
|
module Text.ParserCombinators.Parsec.Error
|
|
( module Text.Parsec.Error
|
|
) where
|
|
|
|
import Text.Parsec.Error
|