mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-12-20 14:51:30 +03:00
45 lines
1.4 KiB
Haskell
45 lines
1.4 KiB
Haskell
-----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : Text.Parsec.String
|
|
-- Copyright : (c) Paolo Martini 2007
|
|
-- License : BSD-style (see the file libraries/parsec/LICENSE)
|
|
--
|
|
-- Maintainer : derek.a.elkins@gmail.com
|
|
-- Stability : provisional
|
|
-- Portability : portable
|
|
--
|
|
-- Make Strings an instance of 'Stream' with 'Char' token type.
|
|
--
|
|
-----------------------------------------------------------------------------
|
|
|
|
{-# LANGUAGE FlexibleInstances #-}
|
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module Text.Parsec.String
|
|
( Parser, GenParser, parseFromFile
|
|
) where
|
|
|
|
import Text.Parsec.Error
|
|
import Text.Parsec.Prim
|
|
|
|
instance (Monad m) => Stream [tok] m tok where
|
|
uncons [] = return $ Nothing
|
|
uncons (t:ts) = return $ Just (t,ts)
|
|
|
|
type Parser a = Parsec String () a
|
|
type GenParser tok st a = Parsec [tok] st a
|
|
|
|
-- | @parseFromFile p filePath@ runs a string parser @p@ on the
|
|
-- input read from @filePath@ using 'Prelude.readFile'. Returns either a 'ParseError'
|
|
-- ('Left') or a value of type @a@ ('Right').
|
|
--
|
|
-- > main = do{ result <- parseFromFile numbers "digits.txt"
|
|
-- > ; case result of
|
|
-- > Left err -> print err
|
|
-- > Right xs -> print (sum xs)
|
|
-- > }
|
|
parseFromFile :: Parser a -> String -> IO (Either ParseError a)
|
|
parseFromFile p fname
|
|
= do input <- readFile fname
|
|
return (runP p () fname input)
|