definition:
|
ppComb :: Int -> (QName, _) -> [AExpr _] -> Doc
ppComb p (qn, _) es | isListId qn && null es = text "[]"
| isTupleId qn = tupled (map ppExp es)
| otherwise = case es of
[] -> ppPrefixOp qn
[e1,e2]
| isInfixOp qn -> parensIf (p > 0)
$ sep [ppExpr 1 e1, ppInfixOp qn, ppExpr 1 e2]
_ -> parensIf (p > 0)
$ sep (ppPrefixOp qn : map (ppExpr 1) es)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty print a constructor or function call
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{(,)},_) |-> _ || (_,{(,)},{[]}) |-> _ || (_,{(,)},{:}) |-> _}
|
name:
|
ppComb
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Int -> ((String, String), a) -> [FlatCurry.Annotated.Types.AExpr b]
-> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|