futhark-0.9.1: An optimising compiler for a functional, array-oriented language.
Language.Futhark.Warnings
data Warnings Source #
The warnings produced by the compiler. The Show instance produces a human-readable description.
Show
Defined in Language.Futhark.Warnings
Methods
(==) :: Warnings -> Warnings -> Bool #
(/=) :: Warnings -> Warnings -> Bool #
showsPrec :: Int -> Warnings -> ShowS #
show :: Warnings -> String #
showList :: [Warnings] -> ShowS #
(<>) :: Warnings -> Warnings -> Warnings #
sconcat :: NonEmpty Warnings -> Warnings #
stimes :: Integral b => b -> Warnings -> Warnings #
mempty :: Warnings #
mappend :: Warnings -> Warnings -> Warnings #
mconcat :: [Warnings] -> Warnings #
Defined in Language.Futhark.TypeChecker.Monad
writer :: (a, Warnings) -> TypeM a #
tell :: Warnings -> TypeM () #
listen :: TypeM a -> TypeM (a, Warnings) #
pass :: TypeM (a, Warnings -> Warnings) -> TypeM a #
singleWarning :: SrcLoc -> String -> Warnings Source #