definition:
|
readFlatCurryIntWithParseOptions :: String -> FrontendParams -> IO Prog
readFlatCurryIntWithParseOptions modname options = do
unless (isValidModuleName modname) $ putStrLn $
"WARNING: '" ++ modname ++ "' is not a valid module name!"
mbsrc <- lookupModuleSourceInLoadPath modname
case mbsrc of
Nothing -> do -- no source file, try to find FlatCurry file in load path:
loadpath <- getLoadPathForModule modname
filename <- getFileWithSuffix
(flatCurryIntName (takeFileName modname)) [""]
loadpath
readFlatCurryFile filename
Just (dir,_) -> do
callFrontendWithParams FINT options modname
let fintfile = dir </> outdir options </>
modNameToPath (takeFileName modname) <.> "fint"
readFlatCurryFile fintfile
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- I/O action which parses a Curry module
--- with respect to some parser options and returns the FlatCurry
--- interface of this program, i.e.,
--- a FlatCurry program containing only "Public" entities and function
--- definitions without rules (i.e., external functions).
--- The argument is the module name without suffix ".curry"
--- (or ".lcurry") and the result is a FlatCurry term representing the
--- interface of this module.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readFlatCurryIntWithParseOptions
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> System.FrontendExec.FrontendParams -> 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
|