definition:
|
getFlatInt :: String -> IO Prog
getFlatInt modname = do
mbdirfn <- lookupModuleSourceInLoadPath modname
let progname = maybe modname snd mbdirfn
fintprogname = flatCurryIntName
(maybe modname
(\ (d,_) -> d </> takeFileName modname)
mbdirfn)
fintexists <- doesFileExist fintprogname
if not fintexists
then readFlatCurryInt modname
else do ctime <- getModificationTime progname
ftime <- getModificationTime fintprogname
if ctime > ftime
then readFlatCurryInt modname
else readFlatCurryFile fintprogname
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Get a FlatCurry interface (parse only if necessary):
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
getFlatInt
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO FlatCurry.Types.Prog
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|