definition:
|
readCurryInterfaceWithParseOptions :: String -> FrontendParams -> IO Interface
readCurryInterfaceWithParseOptions modname options = do
mbsrc <- lookupModuleSourceInLoadPath modname
case mbsrc of
Nothing -> error $ "Module '" ++ modname ++ "' not found in load path!"
Just (dir,_) -> do
-- read FlatCurry to generate interface file
callFrontendWithParams FCY options modname
readCurryInterfaceFile (curryInterfaceFileName (dir </> modname))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- I/O action which reads a Curry interface from a file (with extension
--- `.icurry`) with respect to some parser options.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readCurryInterfaceWithParseOptions
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> System.FrontendExec.FrontendParams
-> Prelude.IO CurryInterface.Types.Interface
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|