definition:
|
transformAbstractCurryInDeps :: String -> [Package] -> (CurryProg -> CurryProg)
-> String -> String -> ErrorLogger ()
transformAbstractCurryInDeps pkgDir deps transform modname destFile = do
acy <- readAbstractCurryFromDeps pkgDir deps modname
liftIOEL $ writeFile destFile $ showCProg (transform acy)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Applies a transformation function to a module from a package or one of its
--- dependencies and writes the modified module to a file in Curry form.
---
--- @param dir - the package's directory
--- @param deps - the resolved dependencies of the package
--- @param f - the transformation function
--- @param mod - the module to transform
--- @param dest - the destination file for the transformed module
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_) |-> _}
|
name:
|
transformAbstractCurryInDeps
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [CPM.Package.Package] -> (AbstractCurry.Types.CurryProg
-> AbstractCurry.Types.CurryProg) -> String -> String
-> CPM.ErrorLogger.ErrorLogger ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|