module FreeC.IR.Syntax.FuncDecl where
import FreeC.IR.SrcSpan
import FreeC.IR.Syntax.Expr
import FreeC.IR.Syntax.Name
import FreeC.IR.Syntax.Type
import FreeC.IR.Syntax.TypeScheme
import FreeC.IR.Syntax.TypeVarDecl
import FreeC.Pretty
data TypeSig = TypeSig { typeSigSrcSpan :: SrcSpan
, typeSigDeclIdents :: [DeclIdent]
, typeSigTypeScheme :: TypeScheme
}
deriving ( Eq, Show )
instance Pretty TypeSig where
pretty (TypeSig _ declIdents typeScheme) = prettySeparated (comma <> space)
(map pretty declIdents)
<+> colon <> colon
<+> pretty typeScheme
data FuncDecl = FuncDecl
{ funcDeclSrcSpan :: SrcSpan
, funcDeclIdent :: DeclIdent
, funcDeclTypeArgs :: [TypeVarDecl]
, funcDeclArgs :: [VarPat]
, funcDeclReturnType :: Maybe Type
, funcDeclRhs :: Expr
}
deriving ( Eq, Show )
instance HasDeclIdent FuncDecl where
declIdent = funcDeclIdent
funcDeclQName :: FuncDecl -> QName
funcDeclQName = declIdentName . funcDeclIdent
funcDeclName :: FuncDecl -> Name
funcDeclName = nameFromQName . funcDeclQName
funcDeclType :: FuncDecl -> Maybe Type
funcDeclType funcDecl = do
argTypes <- mapM varPatType (funcDeclArgs funcDecl)
retType <- funcDeclReturnType funcDecl
return (funcType NoSrcSpan argTypes retType)
funcDeclTypeScheme :: FuncDecl -> Maybe TypeScheme
funcDeclTypeScheme funcDecl = TypeScheme NoSrcSpan (funcDeclTypeArgs funcDecl)
<$> funcDeclType funcDecl
instance Pretty FuncDecl where
pretty (FuncDecl _ declIdent' typeArgs args maybeReturnType rhs)
= case maybeReturnType of
Nothing -> prettyFuncHead <+> equals <+> pretty rhs
Just returnType -> prettyFuncHead
<+> colon <> colon
<+> pretty returnType
<+> equals
<+> pretty rhs
where
prettyFuncHead :: Doc
prettyFuncHead = pretty declIdent'
<+> hsep (map ((char '@' <>) . pretty) typeArgs)
<+> hsep (map pretty args)