Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Language.Fortran.Parser.Monad
Description
Parser/lexer monad, plus common functionality and definitions.
Documentation
data ParanthesesCount Source #
Constructors
ParanthesesCount | |
Fields
|
Instances
Show ParanthesesCount Source # | |
Defined in Language.Fortran.Parser.Monad Methods showsPrec :: Int -> ParanthesesCount -> ShowS # show :: ParanthesesCount -> String # showList :: [ParanthesesCount] -> ShowS # | |
Eq ParanthesesCount Source # | |
Defined in Language.Fortran.Parser.Monad Methods (==) :: ParanthesesCount -> ParanthesesCount -> Bool # (/=) :: ParanthesesCount -> ParanthesesCount -> Bool # |
Constructors
ConStart | |
ConData | |
ConImplicit | |
ConNamelist | |
ConCommon |
data ParseState a Source #
Constructors
ParseState | |
Fields
|
Instances
Show a => Show (ParseState a) Source # | |
Defined in Language.Fortran.Parser.Monad Methods showsPrec :: Int -> ParseState a -> ShowS # show :: ParseState a -> String # showList :: [ParseState a] -> ShowS # | |
(Loc b, LastToken b c, Show c) => MonadState (ParseState b) (Parse b c) Source # | |
Defined in Language.Fortran.Parser.Monad Methods get :: Parse b c (ParseState b) # put :: ParseState b -> Parse b c () # state :: (ParseState b -> (a, ParseState b)) -> Parse b c a # |
data ParseError (a :: k) b Source #
Constructors
ParseError | |
Fields
|
Instances
(Typeable a, Typeable b, Show a, Show b) => Exception (ParseError a b) Source # | |
Defined in Language.Fortran.Parser.Monad Methods toException :: ParseError a b -> SomeException # fromException :: SomeException -> Maybe (ParseError a b) # displayException :: ParseError a b -> String # | |
Show b => Show (ParseError a b) Source # | |
Defined in Language.Fortran.Parser.Monad Methods showsPrec :: Int -> ParseError a b -> ShowS # show :: ParseError a b -> String # showList :: [ParseError a b] -> ShowS # | |
(Loc b, LastToken b c, Show c) => MonadError (ParseError b c) (Parse b c) Source # | |
Defined in Language.Fortran.Parser.Monad Methods throwError :: ParseError b c -> Parse b c a # catchError :: Parse b c a -> (ParseError b c -> Parse b c a) -> Parse b c a # |
data ParseResult b c a Source #
Constructors
ParseOk a (ParseState b) | |
ParseFailed (ParseError b c) |
Instances
Functor (ParseResult b c) Source # | |
Defined in Language.Fortran.Parser.Monad Methods fmap :: (a -> b0) -> ParseResult b c a -> ParseResult b c b0 # (<$) :: a -> ParseResult b c b0 -> ParseResult b c a # |
Constructors
Parse | |
Fields
|
Instances
(Loc b, LastToken b c, Show c) => MonadState (ParseState b) (Parse b c) Source # | |
Defined in Language.Fortran.Parser.Monad Methods get :: Parse b c (ParseState b) # put :: ParseState b -> Parse b c () # state :: (ParseState b -> (a, ParseState b)) -> Parse b c a # | |
(Loc b, LastToken b c, Show c) => MonadFail (Parse b c) Source # | |
Defined in Language.Fortran.Parser.Monad | |
(Loc b, LastToken b c, Show c) => Applicative (Parse b c) Source # | |
Defined in Language.Fortran.Parser.Monad | |
(Loc b, LastToken b c, Show c) => Functor (Parse b c) Source # | |
(Loc b, LastToken b c, Show c) => Monad (Parse b c) Source # | |
(Loc b, LastToken b c, Show c) => MonadError (ParseError b c) (Parse b c) Source # | |
Defined in Language.Fortran.Parser.Monad Methods throwError :: ParseError b c -> Parse b c a # catchError :: Parse b c a -> (ParseError b c -> Parse b c a) -> Parse b c a # |
runParse :: (Loc b, LastToken b c, Show c) => Parse b c a -> ParseState b -> ParseResult b c a Source #
runParseUnsafe :: (Loc b, LastToken b c, Show c) => Parse b c a -> ParseState b -> (a, ParseState b) Source #
throwIOError :: String -> a Source #
execParse :: (Loc b, LastToken b c, Show c) => Parse b c a -> ParseState b -> ParseState b Source #
getVersion :: (Loc a, LastToken a b, Show b) => Parse a b FortranVersion Source #
getParanthesesCount :: (Loc a, LastToken a b, Show b) => Parse a b ParanthesesCount Source #