definition:
|
ppExp :: JLExp -> Doc
ppExp (JLInt n) = int n
ppExp (JLFloat f) = float f
ppExp (JLBool b) = text (if b then "true" else "false")
ppExp (JLString s) = ppStringLit s
ppExp (JLIVar v) = ppVar v
ppExp (JLSVar s) = text s
ppExp (JLArrayAcc a i) = ppExp a <> brackets (ppExp i)
ppExp (JLArrayInit es) = brackets (ppExps es)
ppExp (JLStructAcc e c) = ppExp e <> char '.' <> text c
ppExp (JLOp op e1 e2) = parens (ppExp e1 <+> text op <+> ppExp e2)
ppExp (JLFCall f es) = text f <> parens (ppExps es)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty print a Julia expression.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({JLInt}) |-> {Doc} || ({JLFloat}) |-> {Doc} || ({JLBool}) |-> {Doc} || ({JLString}) |-> _ || ({JLIVar}) |-> _ || ({JLSVar}) |-> {Doc} || ({JLArrayAcc}) |-> _ || ({JLArrayInit}) |-> _ || ({JLStructAcc}) |-> _ || ({JLOp}) |-> _ || ({JLFCall}) |-> _}
|
name:
|
ppExp
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Language.Julia.Types.JLExp -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|