definition: |
processInput :: ReplState -> String -> IO () processInput rst g | null g = repLoop rst | isCommand g = do mbrst <- processCommand rst (strip (tail g)) maybe (repLoop (rst { exitStatus = 1 })) (\rst' -> if quit rst' then cleanUpAndExitRepl rst' else repLoop rst') mbrst | "let " `isPrefixOf` g = getAcyOfExpr rst (g ++ "\n in ()") >>= maybe (repLoop rst) (\_ -> repLoop rst { letBinds = letBinds rst ++ [g] }) | otherwise = evalExpression rst g >>= repLoop |
demand: |
argument 2 |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
processInput |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
REPL.State.ReplState -> String -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |