definition:
|
analyzeFunctionForBrowser :: String -> QName -> AOutFormat -> IO String
analyzeFunctionForBrowser ananame qn@(mname,_) aoutformat = do
cconfig <- readRCFile
analyzeProgram cconfig ananame False FormatText aoutformat mname >>=
return . either (maybe "" id . lookupProgInfo qn) (const "")
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Run the analysis system to show the analysis result of a single function
--- in the BrowserGUI. The options are read from the rc file.
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
name:
|
analyzeFunctionForBrowser
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> (String, String) -> Analysis.Types.AOutFormat -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|