definition:
|
setCurrentFunctionAnalysis :: IORef GuiState ->
(Maybe (FunctionAnalysis AnalysisResult)) -> IO ()
setCurrentFunctionAnalysis gs fana = do
(GS ts mm mods fs ct flag _) <- readIORef gs
writeIORef gs (GS ts mm mods fs ct flag fana)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Set current function analysis:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
setCurrentFunctionAnalysis
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.IORef.IORef GuiState
-> Prelude.Maybe (BrowserAnalysisTypes.FunctionAnalysis BrowserAnalysisTypes.AnalysisResult)
-> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|