definition:
|
ppTop :: JLTop -> Doc
ppTop (JLStat stm) = ppStm stm
ppTop (JLFDecl f args rtype body) =
nest 2 (text "function" <+> text f <> parens (ppArgs args) <> ppTypeAnn rtype
$$ ppStms body)
$$ text "end"
where
ppArgs = hsep . punctuate comma . map ppArg
ppArg (v,t) = ppVar v <> ppTypeAnn t
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Pretty print a Julia function declaration.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({JLStat}) |-> _ || ({JLFDecl}) |-> _}
|
name:
|
ppTop
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Language.Julia.Types.JLTop -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|