2008-01-13 20:53:15 +03:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- |
|
|
|
|
-- Module : Text.ParserCombinators.Parsec
|
|
|
|
-- Copyright : (c) Paolo Martini 2007
|
|
|
|
-- License : BSD-style (see the LICENSE file)
|
|
|
|
--
|
2008-02-02 07:52:12 +03:00
|
|
|
-- Maintainer : derek.a.elkins@gmail.com
|
2008-01-13 20:53:15 +03:00
|
|
|
-- Stability : provisional
|
|
|
|
-- Portability : portable
|
|
|
|
--
|
|
|
|
-- Parsec compatibility module
|
|
|
|
--
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module Text.ParserCombinators.Parsec
|
|
|
|
( -- complete modules
|
2008-02-17 06:53:24 +03:00
|
|
|
module Text.ParserCombinators.Parsec.Prim
|
2008-01-13 20:53:15 +03:00
|
|
|
, module Text.ParserCombinators.Parsec.Combinator
|
|
|
|
, module Text.ParserCombinators.Parsec.Char
|
|
|
|
|
|
|
|
-- module Text.ParserCombinators.Parsec.Error
|
|
|
|
, ParseError
|
|
|
|
, errorPos
|
|
|
|
|
|
|
|
-- module Text.ParserCombinators.Parsec.Pos
|
|
|
|
, SourcePos
|
|
|
|
, SourceName, Line, Column
|
|
|
|
, sourceName, sourceLine, sourceColumn
|
|
|
|
, incSourceLine, incSourceColumn
|
|
|
|
, setSourceLine, setSourceColumn, setSourceName
|
|
|
|
|
|
|
|
) where
|
|
|
|
|
2008-03-06 04:20:54 +03:00
|
|
|
import Text.Parsec.String()
|
2008-01-13 20:53:15 +03:00
|
|
|
|
|
|
|
import Text.ParserCombinators.Parsec.Prim
|
|
|
|
import Text.ParserCombinators.Parsec.Combinator
|
|
|
|
import Text.ParserCombinators.Parsec.Char
|
|
|
|
|
|
|
|
import Text.ParserCombinators.Parsec.Error
|
|
|
|
import Text.ParserCombinators.Parsec.Pos
|