definition:
|
copyTransFlatCurry :: Options -> String -> IO ()
copyTransFlatCurry opts mname = do
lookupModuleSourceInLoadPath mname >>=
maybe (error $ "Module '" ++ mname ++ "' not found in load path!")
(\ (mdir,_) -> copyFlatCurryInDir opts mdir mname)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Copies transformed FlatCurry files.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
copyTransFlatCurry
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
C2C.Options.Options -> String -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|