definition:
|
processBrowse :: ReplState -> String -> IO (Maybe ReplState)
processBrowse rst args
| notNull $ stripCurrySuffix args = skipCommand "superfluous argument"
| otherwise = checkForWish $ do
writeVerboseInfo rst 1 "Starting Curry Browser in separate window..."
checkAndCallCpmTool "curry-browse" "currybrowse"
(\toolexec -> execCommandWithPath rst toolexec [currMod rst])
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Process :browse command
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
processBrowse
|
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
|