definition:
|
repLoop :: ReplState -> IO ()
repLoop rst = do
putStr prompt >> hFlush stdout
eof <- isEOF
if eof then cleanUpAndExitRepl rst
else mGetLine >>= maybe (cleanUpAndExitRepl rst) (checkInput . strip)
where
prompt = calcPrompt rst
checkInput inp
| null inp
= repLoop rst
| ord (head inp) == 0 -- indicates sometimes EOF
= cleanUpAndExitRepl rst
| otherwise
= do when (withEcho rst) $ putStrLn $ prompt ++ inp
processInput rst inp
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- The main read-eval-print loop:
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
repLoop
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
REPL.State.ReplState -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|