definition:
|
getCurrentFunctionAnalysis :: IORef GuiState ->
IO (Maybe (FunctionAnalysis AnalysisResult))
getCurrentFunctionAnalysis gs = do
(GS _ _ _ _ _ _ fana) <- readIORef gs
return fana
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Get currently selected function analysis:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
getCurrentFunctionAnalysis
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.IORef.IORef GuiState
-> Prelude.IO (Prelude.Maybe (BrowserAnalysisTypes.FunctionAnalysis BrowserAnalysisTypes.AnalysisResult))
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|