definition:
|
genCurryMod :: String -> IO String
genCurryMod modname = do
--prog <- readFlatCurryFile (flatCurryFileName modname)
prog <- getFlatProg modname
return $ showCurryModule prog
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- generate a human-readable representation of a Curry module:
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
genCurryMod
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|