definition:
|
readAnalysisPrivateFile :: (Read a, ReadWrite a) => DLevel -> String
-> IO (ProgInfo a)
readAnalysisPrivateFile dl fname = do
debugMessage dl 3 $ "Reading private analysis file '" ++ fname ++ "'..."
fexists <- doesFileExist fname
infomap <- if fexists then readAnalysisFile dl fname else return empty
return $ ProgInfo empty infomap
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads the private `ProgInfo` from a private analysis file and
--- set the public information to empty. If the private analysis file
--- does not exist, the empty `ProgInfo` is returned.
--- If the file is buggy, an error is raised.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
readAnalysisPrivateFile
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(Prelude.Read a, RW.Base.ReadWrite a) => Analysis.Logging.DLevel -> String
-> Prelude.IO (ProgInfo a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|