definition:
|
readShortASTWithParseOptions :: String -> FrontendParams -> IO (Module ())
readShortASTWithParseOptions progname options = do
mbsrc <- lookupModuleSourceInLoadPath progname
case mbsrc of
Nothing -> do -- no source file, try to find shortAST file in load path
loadpath <- getLoadPathForModule progname
filename <- getFileWithSuffix (shortASTFileName (takeFileName progname))
[""] loadpath
readASTFile filename
Just (dir,_) -> do
callFrontendWithParams SAST options progname
readASTFile (shortASTFileName (dir </> takeFileName progname))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- | Reads the short-AST with further options from a specified module
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readShortASTWithParseOptions
|
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
|