definition:
|
readAnalysisPublicFile :: (Read a, ReadWrite a) => DLevel -> String
-> IO (ProgInfo a)
readAnalysisPublicFile dl fname = do
debugMessage dl 3 $ "Reading public analysis file '" ++ fname ++ "'..."
infomap <- readAnalysisFile dl fname
return $ ProgInfo infomap empty
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads the public `ProgInfo` from an existing public analysis file and
--- set the private information to empty.
--- If the file is buggy, an error is raised.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
readAnalysisPublicFile
|
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
|