definition:
|
showInterface :: Bool -> Prog -> String
showInterface genstub (Prog mod imports types funcs ops) = unlines $
["module " ++ mod ++ " where\n"] ++
concatMap showInterfaceImport imports ++ [""] ++
map showInterfaceOpDecl (sortBy leqOp ops) ++
(if null ops then [] else [""]) ++
concatMap (showInterfaceType (showQNameInModule mod))
(sortBy leqType types) ++ [""] ++
concatMap (showInterfaceFunc (showQNameInModule mod) genstub)
(sortBy leqFunc funcs)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Shows an interface description for a program:
-- If first argument is True, generate stubs (...external) for
-- all functions so that the resulting interface is a valid Curry program.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Prog}) |-> _}
|
name:
|
showInterface
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Bool -> FlatCurry.Types.Prog -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|