Remove useless imports.
parent
6a78e863c1
commit
36f3831827
|
@ -1,18 +1,13 @@
|
||||||
-- | `GenericParser.DomainParser.Common` regroups all functions and types that are common between the different domain parsers.
|
-- | `GenericParser.DomainParser.Common` regroups all functions and types that are common between the different domain parsers.
|
||||||
module GenericParser.DomainParser.Common where
|
module GenericParser.DomainParser.Common where
|
||||||
|
|
||||||
import Prelude
|
|
||||||
import Control.Alt ((<|>))
|
import Control.Alt ((<|>))
|
||||||
import Control.Lazy (defer)
|
import Data.Maybe (Maybe(..))
|
||||||
import Data.Array as A
|
|
||||||
import Data.Either (Either(..))
|
|
||||||
import Data.Maybe (Maybe(..), maybe)
|
|
||||||
import Data.String as S
|
import Data.String as S
|
||||||
import Data.String.CodeUnits as CU
|
|
||||||
|
|
||||||
import GenericParser.Parser (Parser(..)
|
import GenericParser.Parser (Parser(..)
|
||||||
, success, failureError
|
, success, failureError
|
||||||
, alphanum, char, many1, string )
|
, alphanum, char, many1)
|
||||||
|
|
||||||
type Size = Int
|
type Size = Int
|
||||||
-- | `DomainError` expresses all possible errors that can occur while parsing a domain.
|
-- | `DomainError` expresses all possible errors that can occur while parsing a domain.
|
||||||
|
|
Loading…
Reference in New Issue