definition:
|
writeCurryProgram :: Options -> String -> CurryProg -> String -> IO ()
writeCurryProgram opts srcdir p appendix = do
let progfile = srcdir </> modNameToPath (progName p) ++ ".curry"
putStrLnIfDebug opts $ "Writing program: " ++ progfile
writeFile progfile (ACPretty.showCProg p ++ "\n" ++ appendix ++ "\n")
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Writes a Curry module (together with an appendix) to its file.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
writeCurryProgram
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CC.Options.Options -> String -> AbstractCurry.Types.CurryProg -> String
-> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|