definition:
|
readICurryFile :: String -> IO IProg
readICurryFile filename = do
exicy <- doesFileExist filename
if exicy
then do contents <- readFile filename
return (readUnqualifiedTerm ["ICurry.Types","Prelude"] contents)
else error $ "EXISTENCE ERROR: ICurry file '" ++ filename ++
"' does not exist"
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads an ICurry program from a file in ".icy" format
--- where the file name is provided as the argument.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
readICurryFile
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO ICurry.Types.IProg
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|