definition:
|
ppStatement :: IStatement -> Doc
ppStatement IExempt = text "exempt"
ppStatement (IReturn e) = text "return" <+> ppExpr e
ppStatement (ICaseCons v bs) = nest 2 (
text "case" <+> ppVar v <+> text "of" $$ ppConsBranches bs)
ppStatement (ICaseLit v bs) = nest 2 (
text "case" <+> ppVar v <+> text "of" $$ ppLitBranches bs)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty print an ICurry block
--- @param block the block
--- @return the rendered block
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({IExempt}) |-> {Doc} || ({IReturn}) |-> _ || ({ICaseCons}) |-> {Doc} || ({ICaseLit}) |-> {Doc}}
|
name:
|
ppStatement
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ICurry.Types.IStatement -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|