definition:
|
processInterface :: ReplState -> String -> IO (Maybe ReplState)
processInterface rst args = do
modname <- getModuleName rst args
mbshowflatbin <- getCpmTool "curry-showflat"
maybe (checkAndCallCpmTool "curry-showinterface" "curry-interface"
(\toolexec -> execCommandWithPath rst toolexec [modname]))
(\showflatbin ->
getCpmTool "curry-showinterface" >>=
maybe (execCommandWithPath rst showflatbin ["-int", modname])
(\showint -> execCommandWithPath rst showint [modname]))
mbshowflatbin
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Process :interface command
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
processInterface
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
REPL.State.ReplState -> String
-> Prelude.IO (Prelude.Maybe REPL.State.ReplState)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|