definition:
|
readFullASTWithParseOptions :: String -> FrontendParams -> IO (Module ())
readFullASTWithParseOptions progname options = do
mbsrc <- lookupModuleSourceInLoadPath progname
case mbsrc of
Nothing -> do -- no source file, try to find AST file in load path
loadpath <- getLoadPathForModule progname
filename <- getFileWithSuffix (fullASTFileName (takeFileName progname))
[""] loadpath
readASTFile filename
Just (dir,_) -> do
callFrontendWithParams AST options progname
readASTFile (fullASTFileName (dir </> takeFileName progname))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- | Reads the AST with further options from a specified module
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readFullASTWithParseOptions
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> System.FrontendExec.FrontendParams
-> Prelude.IO (Curry.Types.Module ())
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|