CurryInfo: showflatcurry-3.0.0 / ShowFlatCurry.getFlatProg

definition:
getFlatProg :: String -> IO Prog
getFlatProg modname = do
  mbdirfn <- lookupModuleSourceInLoadPath modname
  let progname    = maybe modname snd mbdirfn
      fcyprogname = flatCurryFileName
                      (maybe modname
                             (\ (d,_) -> d </> takeFileName modname)
                             mbdirfn)
  fcyexists <- doesFileExist fcyprogname
  if not fcyexists
    then readFlatCurry modname
    else do ctime <- getModificationTime progname
            ftime <- getModificationTime fcyprogname
            if ctime > ftime
              then readFlatCurry modname
              else readFlatCurryFile fcyprogname
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Get a FlatCurry program (parse only if necessary):
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
getFlatProg
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